Let's say I have a user table, and the id column is the primary key and it grows automatically.
I just want to try adding the user manually with this statement:
INSERT INTO table_name (id, username, password) VALUES (?, Mike, Mike);
but I do not want to indicate a value ? I just want to add to the next line.
Thanks to everyone, I forgot to set the id column to auto grow. he is working now.
source share