wallaceoc80
Programmer
If you have a table with (say) 3 columns, the first of which is an identity colum with an auto increment of 1, and you want to insert a new row into the table.
Do you have to list out all the columns like this:
or can you leave out the part where I specify the column names?
Thanks for the help,
Wallace
Do you have to list out all the columns like this:
Code:
insert into tablename (column2, column3)
values ('a', 'b');
or can you leave out the part where I specify the column names?
Thanks for the help,
Wallace