INSERT THREE ROWS INTO THE ORDER_ITEMS TABLE, USING SUBSTITUTION VARIABLES

5. Insert three rows into the ORDER_ITEMS table, using substitution variables:

insert into order_items values (&item_id, &order_id, &product_id, &quantity);

When prompted, provide the values: {1, 1, 2,5}, {2,1,1,3}, and {1,2,2,4}.