In our db there is a table that has a little over 80 columns. It has a primary key and Identity insert is turned on. I\'m looking for a way to insert into this table every colum
CREATE TABLE Tests ( TestID int IDENTITY PRIMARY KEY, A int, B int, C int ) INSERT INTO dbo.Tests VALUES (1,2,3) SELECT * FROM Tests
This works in SQL2012