- INSERT allows insertion of data
- INSERT INTO model_cars VALUES ('ford','mustang',1966,'red');
- string (char/varchar) values must be surrounded by single quotes
- INT data does not require single quotes
- INSERT INTO model_cars VALUES ('ford','mustang',1966,'red',NULL);
- the NULL allows autoincrement to...autoincrement
- must be as many values as columns!
NEXT
PREVIOUS
Master Index