Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- create database MiComercioIT;
- /*
- create table Productos(
- idProducto int(11) UNSIGNED NOT null auto_increment primary key,
- Nombre varchar(30) NOT null,
- Precio double,
- Marca varchar(30) not null,
- Categoria varchar(30) not null,
- Stock int(6) not null,
- Disponible boolean default false
- );
- */
- # show tables;
Advertisement
Add Comment
Please, Sign In to add comment