The table is as follows.
create table ventas(
id_venta number(5) primary key,
id_articulo number(5) references articulos,
id_empleado number(6) references empleado,
id_cliente number(5) references cliente,
cantidad number(10) not null,
precio number(8) not null,
total number(8) not null,
fecha_venta date
);