teslariu

intro

Jul 6th, 2023
1,315
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MySQL 0.32 KB | None | 0 0
  1. -- create database MiComercioIT;
  2.  
  3. /*  
  4. create table Productos(
  5. idProducto int(11) UNSIGNED NOT null auto_increment primary key,
  6. Nombre varchar(30) NOT null,
  7. Precio double,
  8. Marca varchar(30) not null,
  9. Categoria varchar(30) not null,
  10. Stock int(6) not null,
  11. Disponible boolean default false
  12. );
  13. */
  14.  
  15. # show tables;
Advertisement
Add Comment
Please, Sign In to add comment