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

DBMS specific notes
 Oracle: Replace DATETIME with DATE

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

CREATE TABLE Orders
(
	order_num	INTEGER		NOT NULL,
	order_date	DATETIME	NOT NULL,
	cust_id		CHAR(10)	NOT NULL
);
