group: AR_DB_ES CLIENTE = { num_cliente:number, nombre:string, direccion:string, telefono:number, poblacion:string 978556487, 'EMPRESA1 S.A.', 'DEL PINO PUENTE', 555654878, 'VALLADOLID' 987665456, 'EMPRESA2 S.L.', 'TRAFALGAR', 555465795, 'PALENCIA' 123854465, 'EMPRESA3 S.A.', 'ANCHO DE BANDA, 5', 555654789, 'AVILA' 555464444, 'PARTICULAR1', 'ROBLES FERRER, 5', 555687565, 'AVILA' 225684566, 'PARTICULAR2', 'MAJADAHONDA, 3', 555987564, 'PALENCIA' } PRODUCTO = { cod_producto:string, descripcion:string, precio:number '374273', 'Freidora de aire caliente', 39.99 '397059', 'Envasadora al vacio 125 W', 19.99 '378290', 'Panificadora automatica 850W', 42.99 '060550', 'Horno multifuncion WIFI', 526.15 '577067', 'Thermomix TM6', 1399 '379572', '379572', 4.99 } FACTURA = { NumFactura:number, Fecha:date, Pagada:boolean, NumCliente:number 101, 2023-01-15, true, 123854465 102, 2023-01-20, false, 978556487 103, 2023-02-01, true, 987665456 104, 2023-02-10, false, 225684566 105, 2023-03-05, true, 555464444 106, 2023-03-15, false, 225684566 107, 2023-04-10, true, 123854465 108, 2023-04-20, false, 978556487 109, 2023-05-01, true, 987665456 110, 2023-05-15, true, 555464444 } VENTA = { cod_producto:string, NumFactura:number, cantidad:number, id_venta:number '374273', 101, 30, 1 '397059', 101, 30, 2 '379572', 102, 1000, 3 '577067', 104, 1, 4 '379572', 102, 600, 5 '378290', 107, 10, 6 '060550', 107, 30, 7 '577067', 107, 30, 8 '379572', 108, 30, 9 '374273', 109, 50, 10 '397059', 109, 50, 11 '374273', 103, 50, 12 '577067', 106, 1, 13 '379572', 102, 600, 14 '378290', 110, 10, 15 '060550', 110, 30, 16 '577067', 110, 30, 17 '379572', 108, 30, 18 '577067', 104, 1, 19 '060550', 106, 1, 20 '378290', 103, 50, 21 '397059', 103, 50, 22 }