sql server - T-SQL's equivalent of Oracle's %TYPE operator? -


While writing a process in PL / SQL, I can declare a parameter type as myTable.myColumn% TYPE So that when I say the type of MyColumn varchar2 (20) varchar2 (50) i do not change the parameter type of process i t is something similar in SQL?

No, there is no equivalent in T-SQL.


Comments

Popular posts from this blog

iphone - How do I make a UIPickerView in a UIActionSheet -

java - Is there an object like a "Set" that can contain only unique string values, but also contain a count on the number of occurrences of the string value? -