INSERT INTO Comments_tbl (FullName_tsf, Email_tsf, NTuser_tsf,
name_tsf, type_tsf, comments_tsf) VALUES ('Test Tester' ,
'tester@test.co m', 'ttest', 'test', 'help', 'need better help')
I am trying to use the following sql to insert from a script but there
is a primary key column - 'com_no' - on the table.
How do I write the sql insert so that the 'com_no' value gets a value
inserted into and increases each time.
Thanks for all help.
name_tsf, type_tsf, comments_tsf) VALUES ('Test Tester' ,
'tester@test.co m', 'ttest', 'test', 'help', 'need better help')
I am trying to use the following sql to insert from a script but there
is a primary key column - 'com_no' - on the table.
How do I write the sql insert so that the 'com_no' value gets a value
inserted into and increases each time.
Thanks for all help.
Comment