unfortunately i have to load in data from a third parties data
create table myTable
(
dealer char(35) not null,
vin char(30) not null,
stock char(15) not null,
extra1 char(20) not null,
make char(30) not null,
model char(30) not null,
year char(4) not null,
miles char(10) not null,
trim char(30) not null,
cylinder char(20) not null,
engine1 char(20) not null,
engine2 char(20) not null,
trans char(20) not null,
color char(25) not null,
price char(10) not null,
extra2 char(20) not null,
extra3 char(20) not null,
extra4 char(20) not null,
etra5 char(20) not null,
newDetails text not null,
clientId char(20) not null,
id int not null auto_increment primary key
);
I hope this helps