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

DBMS specific notes
  All tables should have primary keys defined. This table should
   use cust_id as its primary key.
  If you are using Informix, explicitly state NULL for the
   cust_address, cust_city, cust_state, cust_zip, cust_country,
   cust_contact, and cust_email columns.
  DB2 users will need to specify where the table is to be created.

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_country	CHAR(50)	,
	cust_contact	CHAR(50)	,
	cust_email	CHAR(255)	
);
