How can I define a table type in SQL server when one of the columns is an array of decimals? I'm trying to pass to stored procedure an .NET object one of the fields of which is an array of decimals.
Thanks
How can I define a table type in SQL server when one of the columns is an array of decimals? I'm trying to pass to stored procedure an .NET object one of the fields of which is an array of decimals.
Thanks
t-sql does not support arrays.
You do, however, have some options: here are 3 of them, from the best to the worst:
xml data type column.