Is there a way to designate a the ID field through the sql statement as you create the table? I am currently working on an import utility I have included the sql statement from a small table.
Any help would be great.
SELECT dbo_States.StateID, dbo_States.StateAbbr, dbo_States.StateName INTO States
FROM dbo_States;
Any help would be great.
SELECT dbo_States.StateID, dbo_States.StateAbbr, dbo_States.StateName INTO States
FROM dbo_States;