Hello,
There is a table variable, which you can insert contents into this table variable
declare @t table
(
myID int identity(1,1) primary key not null,
text varchar(50) not null
)
I don't believe you can do arrays. Maybe in SQL 2005, but I'm not sure then. I haven't seen any specs on it...
Brian
|