I have a table with one and only one column, which is an identity column (PK) of this table. How to insert row in this table?

INSERT INTO table_name 

doesn't work, neither does:

INSERT INTO table_name() VALUES()

VALID SOLUTION FROM THE ANSWER:

INSERT INTO table_name DEFAULT VALUES
link|improve this question

72% accept rate
feedback

2 Answers

up vote 4 down vote accepted
DECLARE @TABLE TABLE
(
    ID INT IDENTITY(1,1) PRIMARY KEY 
)

INSERT INTO @TABLE DEFAULT VALUES

SELECT * FROM @TABLE
link|improve this answer
feedback

You should enable identity insert on the table, so that you can insert values into the column.

SET IDENTITY_INSERT table_name ON
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.