Forum Moderators: open
My question has to do with inserts, more specifically when inserting a new row in a table.
So in MySql I can do:
INSERT into table VALUES(DEFAULT,"'.$post['variable'].'")
Notice the DEFAULT for the new id created for a new row in the table.
How do I do that in SQL? I have tried a few things and nothing has worked. Is there an equivalent to DEFAULT for a new row id in SQL?
Thanks!