Viewing post 1 (of 1 total)
Jason Selburg (10/25/2013)
DECLARE @testData TABLE
([Industry] VARCHAR(2)
,[Naicstitle] VARCHAR(50)
,[NumMatch] INT)
INSERT @testData (Industry,Naicstitle,NumMatch)
VALUES
('00', '', 1025)
...
October 25, 2013 at 2:52 pm
#1661741