create table tablename
(column1 char(10) not null,
column2 int not null,
column3 datetime,
column4 char(100),
primary key(column1,column2));