Data-Type mapping in SQL server 2005
Is there a way to declare mapped data-types in SQL Server 2005, something like Oracle's %Typ开发者_如何学Ce
:
Declare a emp.sal%type
where data-type of a
will be same as sal
field of emp
table
or Declare a emp%rowtype
where data-types of a
will be same as each row of emp
table.
I have googled it,but couldn't find it.
The Oracle %TYPE attribute adapts code as table definitions change. If the column's type changes, the variable adapts to use the correct type during run time. This enables data independence without requiring to know the exact data types to be assigned for a variable or database column.
Microsoft SQL Server does NOT support and has no equivalent of Oracle %TYPE.
精彩评论