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

DBMS specific notes
 None

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

CREATE TABLE Vendors
(
	vend_id		CHAR(10)	NOT NULL,
	vend_name	CHAR(50)	NOT NULL,
	vend_address	CHAR(50)	,
	vend_city	CHAR(50)	,
	vend_state	CHAR(5)		,
	vend_zip	CHAR(10)	
);

