Viewing post 1 (of 1 total)
Perhaps you want a table variable?
DECLARE @Table TABLE
(
Column1 INT NOT NULL,
Column2 VARCHAR(10) NOT NULL
)
June 7, 2007 at 12:26 am
#711323