Chapter Seven – SQL For Database Construction and Application Processing
Page 7-119
‘3211 42nd Street’, ‘Seattle’, ‘WA’, ‘98115’, ‘206-524-5766′, 1);
INSERT INTO CUSTOMER VALUES(
‘Walsh’, ‘Denesha’, ‘Denesha.Walsh@somewhere.com’, ‘D7gb7T84’,
‘6712 24th Avenue NE’, ‘Redmond’, ‘WA’, ‘98053’, ‘425–635-7566′, 5);
INSERT INTO CUSTOMER VALUES(
‘Enquist’, ‘Craig’, ‘Craig.Enquist@elsewhere.com’, ‘gg7ER53t’,
‘534 15th Street’, ‘Bellingham’, ‘WA’, ‘98225’, ‘360-538-6455′, 6);
INSERT INTO CUSTOMER VALUES(
‘Anderson’, ‘Rose’, ‘Rose.Anderson@elsewhere.com’, ‘vx67gH8W’,
‘6823 17th Ave NE’, ‘Seattle’, ‘WA’, ‘98105’, ‘206-524-6877′, 3);
/***** EMPLOYEE DATA ********************************************************/
/***** VENDOR DATA **********************************************************/
INSERT INTO VENDOR VALUES(
‘Linens and Things’, ‘Huntington’, ‘Anne’, ‘1515 NW Market Street’,
‘Seattle’, ‘WA’, ‘98107′, ‘206–325-6755′, ‘206-329-9675′, ‘LAT@business.com’);
INSERT INTO VENDOR
(ContactLastName, ContactFirstName, Address, City, State, ZIP, Phone, Email)
VALUES(
‘Harrison’, ‘Denise’, ‘533 10th Avenue’,
‘Kirkland’, ‘WA’, ‘98033′, ‘425-746-4322’, ‘Denise.Harrison@somewhere.com’);
INSERT INTO VENDOR VALUES(
‘New York Brokerage’, ‘Smith’, ‘Mark’, ‘621 Roy Street’,
‘Seattle’, ‘WA’, ‘98109′, ‘206–325-9088′, ‘206-329-9908′, ‘NYB@business.com’);