Ajout des tp

This commit is contained in:
2026-02-04 17:27:49 +01:00
parent 38d424e819
commit 1ee438d5be
23 changed files with 2308 additions and 8 deletions

View File

@@ -12,3 +12,4 @@ BEGIN
SELECT p.prix_unitaire*lc.p_quantite into v_prix_total FROM Produit p, Ligne_commande lc WHERE p.id=p_produit_id
INSERT INTO Ligne_commande values (seq_t.NEXT, p_commande_id,
p_produit_id, p_quantite,v_prix_total)
END;