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

Note: Depending on the client software being used, you may
have to execute these INSERT statements one at a time.

DBMS specific notes
 None

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

INSERT INTO Vendors(vend_id, vend_name, vend_address, vend_city, vend_state, vend_zip)
VALUES('BRS01','Bears R Us','123 Main Street','Bear Town','MI','44444');

INSERT INTO Vendors(vend_id, vend_name, vend_address, vend_city, vend_state, vend_zip)
VALUES('BRE02','Bear Emporium','500 Park Street','Anytown','OH','44333');

INSERT INTO Vendors(vend_id, vend_name, vend_address, vend_city, vend_state, vend_zip)
VALUES('DLL01','Doll House Inc.','555 High Street','Dollsville','CA','99999');

INSERT INTO Vendors(vend_id, vend_name, vend_address, vend_city, vend_state, vend_zip)
VALUES('FRB01','Furball Inc.','1000 5th Avenue','New York','NY','11111');
