Inserts
INSERT INTO Order_Item (order_item_id, order_id, product_id, quantity, price) VALUES
(1, 1, 1, 2, 20.00),
(2, 1, 2, 1, 10.00),
(3, 2, 1, 1, 25.00),
(4, 2, 3, 2, 25.00),
(5, 3, 2, 1, 15.00),
(6, 4, 3, 3, 20.00);
INSERT INTO Order_Item (order_item_id, order_id, product_id, quantity, price) VALUES
(1, 1, 1, 2, 20.00),
(2, 1, 2, 1, 10.00),
(3, 2, 1, 1, 25.00),
(4, 2, 3, 2, 25.00),
(5, 3, 2, 1, 15.00),
(6, 4, 3, 3, 20.00);