When writing a procedure in PL/SQL, I can declare a parameter’s type as myTable.myColumn%TYPE so that when I alter myColumn’s type from say varchar2(20) to varchar2(50) I don’t have to change the procedure’s parameter type. Is there something similar in T-SQL?
When writing a procedure in PL/SQL, I can declare a parameter’s type as myTable.myColumn%TYPE
Share
No, there is no equivalent in T-SQL.