==========================================================
Sams Teach Yourself SQL in 10 Minutes - ISBN 0672316641
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,'1999/5/1','1000000001');

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

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

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

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