You are on page 1of 1

create table usuario (

cod_u int not null auto_increment,


login varchar(30) not null,
password varchar(20) not null,
primary key (cod_u));

You might also like