aboutsummaryrefslogtreecommitdiff
path: root/opdracht-2/q6.sql
blob: 397f403834bce32504e67d35164059c26097e06f (plain)
1
2
3
update OrderProduct set Aantal = 3 where ProductID = 1;
insert into OrderProduct (OrderID, ProductID, Aantal) values (1, 2, 5);
insert into OrderProduct (OrderID, ProductID, Aantal) values (1, 3, 2);