My question is what is the syntax to insert a table with only one column
which is the primary key of the table. It is also the type of identity. I
tried
Insert into table1 values ();
Insert into table values (NULL);
both failed. Any suggestion? Thanks a lot.
Changsong