Suppose you have a table in SQL Server declared in the following manner:
CREATE TABLE my_table
(
id INT IDENTITY(1,1) PRIMARY KEY
);
How do you INSERT
into this table? I have tried the following, all to no avail:
INSERT INTO my_table;
INSERT INTO my_table () VALUES ();
INSERT INTO my_table SELECT NULL;