8 lines
150 B
MySQL
8 lines
150 B
MySQL
|
|
drop table if exists USERS;
|
||
|
|
|
||
|
|
create table USERS(
|
||
|
|
ID int not null AUTO_INCREMENT,
|
||
|
|
NAME varchar(100) not null,
|
||
|
|
STATUS int,
|
||
|
|
PRIMARY KEY ( ID )
|
||
|
|
);
|