How can I insert a value into a table in sql server 2000, 2005, 2008?
5 answers
http://www.sqlteam.com/forums/topic.asp?TOPIC_ID=90116
provided some insight here.
INSERT INTO TableName DEFAULT VALUES
+4
a source to share
Without knowing the table schema you won't be able to give you a good answer, but you can do something like:
insert into tableName (column2, column3, column4) values (value2, value3, value4)
Since you are using an autoincrement column, you do not need to specify it when inserting data.
0
a source to share