Está en la página 1de 1

create table Producto (

cod_bar varchar(20) not null,


nombre varchar(15) not null,
precio float not null,
marca varchar(20) not null)
create table Venta (
id_cuenta int not null,
fecha date not null,
hora varchar(10) not null,
venta_total float not null,
id_vendido int not null
)

También podría gustarte