I know I am missing alot, but I am new to mysql and I have to make a table for a used car dealer which includes make,model,price and mpg and I am confused. I have to configure commands with sample data to enter at least one record in each field.
CREATE TABLE cars (
id INT NOT NULL AUTO INCREMENT,
maketext TEXT,
modeltext TEXT,
price
mpg
...
);