Friday, October 4, 2013

SQL - Declare a Table Variable

DECLARE @table_membership TABLE(   seq_id int identity(1,1),
                                            name varchar(1000) NOT NULL,
                                            contact varchar(1000) NOT NULL,
                                            type_sort int NOT NULL,

                                   )

No comments:

Post a Comment