#Order_Lines INSERT INTO Order_Lines (o_num, i_num, ol_quantity, o_price, o_cost, shipped) VALUES (1, 1, 1, 9.99, 4.99, 'false'); INSERT INTO Order_Lines (o_num, i_num, ol_quantity, o_price, o_cost, shipped) VALUES (1, 7, 1, 10.99, 5.99, 'false'); INSERT INTO Order_Lines (o_num, i_num, ol_quantity, o_price, o_cost, shipped) VALUES (1, 18, 1, 11.99, 6.99, 'false'); INSERT INTO Order_Lines (o_num, i_num, ol_quantity, o_price, o_cost, shipped) VALUES (2, 3, 1, 11.99, 6.99, 'false'); INSERT INTO Order_Lines (o_num, i_num, ol_quantity, o_price, o_cost, shipped) VALUES (2, 4, 1, 12.99, 7.99, 'false'); INSERT INTO Order_Lines (o_num, i_num, ol_quantity, o_price, o_cost, shipped) VALUES (2, 8, 1, 12.99, 7.99, 'false'); INSERT INTO Order_Lines (o_num, i_num, ol_quantity, o_price, o_cost, shipped) VALUES (3, 11, 1, 11.99, 6.99, 'false'); INSERT INTO Order_Lines (o_num, i_num, ol_quantity, o_price, o_cost, shipped) VA...