?
2011-11-19 15:58:30 UTC
rowid, data1, data2, data3
rowid is set to int auto increment
when I insert a row I want the rowid to auto increment - I am using the following to insert a row:
INSERT INTO MYTABLE VALUES(NULL, dataA, dataB, dataC);
My question is, is using a value of NULL for the rowid position correct? If not, what is usually put there?