Saturday, February 25, 2012

Can I use dimension in SQL SERVER 2005?

I hope to pass a dimension such as int A[5] to a stored procedure

A[0]=10

A[1]=20

...

Can I do that in sql server 2005? if so , please give me a sample, thanks!

I dont think you can do that in SQL yet. You could pass a delimited string and parse it over in your stored proc.

No comments:

Post a Comment