drop table if exists USERS; create table USERS( ID int not null AUTO_INCREMENT, NAME varchar(100) not null, STATUS int, PRIMARY KEY ( ID ) );