I got a table with 4 fields:
id, int(11), auto increament email, varchar(32) pass, varchar(32) date_created, date
My question
In SQL you can specify which columns you want to set in the INSERT statement:
INSERT
INSERT INTO table_name(email, pass, date_created) VALUES(?, ?, ?)