8 lines
150 B
MySQL
Raw Normal View History

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