CREATE TABLE autos (
    auto_id INT UNSIGNED NOT NULL KEY,
    make VARCHAR(128),
    year INTEGER,
    mileage INTEGER
);