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

DBMS specific notes
 Access: Replace DECIMAL(8,2) with MONEY
         Remove the (1000) from the VARCHAR

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

CREATE TABLE Products
(
	prod_id		CHAR(10)	NOT NULL,
	vend_id		CHAR(10)	NOT NULL,
	prod_name	CHAR(255)	NOT NULL,
	prod_price	DECIMAL(8,2)	NOT NULL,
	prod_desc	VARCHAR(1000)		
);
