This article is tagged with:
Sql declare table variable
and mysql
sql declare table variable
DECLARE @TABLE TABLE( COL1 INT, COL2 VARCHAR(30))
declare table variable sql server
DECLARE @table_variable_name TABLE (
column_list
);
Example:
DECLARE @product_table TABLE (
product_name VARCHAR(MAX) NOT NULL,
brand_id INT NOT NULL,
list_price DEC(11,2) NOT NULL
);