How to Create a Table Variable with SQL 2013-02-08 17:57:00 DECLARE @tempTable TABLE ( id BIGINT, class_id BIGINT, value VARCHAR(255) ) SQL