==========================================================
Sams Teach Yourself SQL in 10 Minutes - ISBN 0672321289
Appendix A - Sample Table Scripts
Populate Orders table

Note: Depending on the client software being used, you may
have to execute these INSERT statements one at a time.

DBMS specific notes
 None

Important: When using this SQL statement only include
text beneath the lines below.
==========================================================

INSERT INTO Orders(order_num, order_date, cust_id)
VALUES(20005, '2001/5/1', '1000000001');

INSERT INTO Orders(order_num, order_date, cust_id)
VALUES(20006, '2001/1/12', '1000000003');

INSERT INTO Orders(order_num, order_date, cust_id)
VALUES(20007, '2001/1/30', '1000000004');

INSERT INTO Orders(order_num, order_date, cust_id)
VALUES(20008, '2001/2/3', '1000000005');

INSERT INTO Orders(order_num, order_date, cust_id)
VALUES(20009, '2001/2/8', '1000000001');
