I got a table with 4 fields:
id, int(11), auto increament email, varchar(32) pass, varchar(32)
date_created, date
My question is how my query should look like?
I mean I don’t need to insert the first value to id because it’s auto increment but I have to insert all of the values..
In SQL you can specify which columns you want to set in the
INSERTstatement: