How to insert row a in one column (PK) table?

Posted by JohnM2 on Stack Overflow See other posts from Stack Overflow or by JohnM2
Published on 2010-05-05T21:23:33Z Indexed on 2010/05/05 21:28 UTC
Read the original article Hit count: 112

Filed under:

I have 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 do:

INSERT INTO table_name() VaLUES()

© Stack Overflow or respective owner

Related posts about sql-server-2005