Given a table with only an IDENTITY column, how do you insert a new row? I've tried the following:
INSERT INTO TABLE
(Syntax error)
INSERT INTO TABLE VALUES()
(Syntax error)
INSERT INTO TABLE (Id) VALUES()
(Syntax error)
Given a table with only an IDENTITY column, how do you insert a new row? I've tried the following:
|
|||||||||
|
In addition: |
|||||||||
|
Another way would be to use
|
||||
|
here is the solution
|
|||
|