I have a table with one and only one column, which is the identity column (PK) of this table. How to insert a row into this table?
INSERT INTO table_name
not working, also:
INSERT INTO table_name() VALUES()
VALID RESPONSE FROM ANSWER:
INSERT INTO table_name DEFAULT VALUES
source
share