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

DBMS specific notes
 None

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

CREATE TABLE Customers
(
	cust_id		CHAR(10)	NOT NULL,
	cust_name	CHAR(50)	NOT NULL,
	cust_address	CHAR(50)	,
	cust_city	CHAR(50)	,
	cust_state	CHAR(5)		,
	cust_zip	CHAR(10)	,
	cust_contact	CHAR(50)	,
	cust_email	CHAR(255)	
);
