Quote:
Originally posted by humble
Nevermind!!!!
Code:
INSERT INTO setting VALUES ( '171' .......
&
INSERT INTO setting VALUES ( '172' ........
[quick questions]
a: can these code hack instructions be modified to add those values in the next available line entry?
|
Yes. See below
Code:
INSERT INTO setting VALUES ( 'NULL' .......
&
INSERT INTO setting VALUES ( 'NULL' ........
That field is set to Auto-Increment. When you insert a new row, and set that value to NULL, it automatically sets it to the next higher number.
And no, if you did it with the 999 solution, it wouldn't create all the rows in between.