BD Login

You might also like

You are on page 1of 1

create database tec;

use tec;
create table usuarios(
id int not null primary key auto_increment,
usuario varchar(25),
pass varchar(25)
);
Insert into usuarios values
('','informaxtec',123);

You might also like