1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
| insert into CO_commande (CO_ident, CO_date)
values (1, '2023-01-10')
, (2, '2023-02-24')
, (3, '2023-03-05')
;
insert into AR_article (AR_ident, AR_ref, AR_desi)
values (1, 'REF00001', 'article machin')
, (2, 'XYZ99955', 'article bidule')
, (3, 'C04X8522', 'autre article')
, (4, '0A40CC90', 'encore un article')
;
insert into LC_ligne (CO_ident, LC_seq, LC_qte, AR_ident)
values (1, 1, 100, 1)
, (1, 2, 150, 1)
, (1, 3, 080, 2)
, (2, 1, 200, 1)
, (3, 1, 300, 4)
, (3, 2, 010, 3)
, (3, 3, 050, 4)
; |
Partager