0% found this document useful (0 votes)
12 views104 pages

CSCI 414 Project 4

The document contains SQL commands for creating and managing a 'customers' table in a database. It includes the structure of the table, commands to drop the table if it exists, and multiple insert statements to populate the table with customer data. The customer data includes fields such as first name, last name, phone, email, and address details.

Uploaded by

Naomie Bambara
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
12 views104 pages

CSCI 414 Project 4

The document contains SQL commands for creating and managing a 'customers' table in a database. It includes the structure of the table, commands to drop the table if it exists, and multiple insert statements to populate the table with customer data. The customer data includes fields such as first name, last name, phone, email, and address details.

Uploaded by

Naomie Bambara
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 104

Server name is 'ML-RefVm-587493\AZURELAB_NAOMIE'

CREATE TABLE customers (

customer_id INT IDENTITY (1, 1) PRIMARY KEY,

first_name VARCHAR (255) NOT NULL,

last_name VARCHAR (255) NOT NULL,

phone VARCHAR (25),

email VARCHAR (255) NOT NULL,

street VARCHAR (255),

city VARCHAR (50),

state VARCHAR (25),

zip_code VARCHAR (5)

);

DROP TABLE IF EXISTS customers;

SELECT TOP (1000) [customer_id]

,[first_name]

,[last_name]

,[phone]

,[email]

,[street]

,[city]

,[state]

,[zip_code]

FROM [customers]

-- customers table
INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Naomie','Bambara',NULL,'[email protected]','9273 Thorne Ave. ','Saint Cloud','NY',56301);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Kasha','Todd',NULL,'[email protected]','910 Vine Street ','Campbell','CA',95008);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Tameka','Fisher',NULL,'[email protected]','769C Honey Creek St. ','Redondo
Beach','CA',90278);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Daryl','Spence',NULL,'[email protected]','988 Pearl Lane ','Uniondale','NY',11553);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Charolette','Rice','(916) 381-6003','[email protected]','107 River Dr.
','Sacramento','CA',95820);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Lyndsey','Bean',NULL,'[email protected]','769 West Road ','Fairport','NY',14450);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Latasha','Hays','(716) 986-3359','[email protected]','7014 Manor Station Rd.
','Buffalo','NY',14215);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Jacquline','Duncan',NULL,'[email protected]','15 Brown St. ','Jackson
Heights','NY',11372);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Genoveva','Baldwin',NULL,'[email protected]','8550 Spruce Drive ','Port
Washington','NY',11050);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Pamelia','Newman',NULL,'[email protected]','476 Chestnut Ave.
','Monroe','NY',10950);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Deshawn','Mendoza',NULL,'[email protected]','8790 Cobblestone Street
','Monsey','NY',10952);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Robby','Sykes','(516) 583-7761','[email protected]','486 Rock Maple Street
','Hempstead','NY',11550);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Lashawn','Ortiz',NULL,'[email protected]','27 Washington Rd. ','Longview','TX',75604);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Garry','Espinoza',NULL,'[email protected]','7858 Rockaway Court
','Forney','TX',75126);
INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Linnie','Branch',NULL,'[email protected]','314 South Columbia Ave.
','Plattsburgh','NY',12901);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Emmitt','Sanchez','(212) 945-8823','[email protected]','461 Squaw Creek Road
','New York','NY',10002);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Caren','Stephens',NULL,'[email protected]','914 Brook St. ','Scarsdale','NY',10583);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Georgetta','Hardin',NULL,'[email protected]','474 Chapel Dr.
','Canandaigua','NY',14424);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Lizzette','Stein',NULL,'[email protected]','19 Green Hill Lane ','Orchard
Park','NY',14127);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Aleta','Shepard',NULL,'[email protected]','684 Howard St. ','Sugar Land','TX',77478);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Tobie','Little',NULL,'[email protected]','10 Silver Spear Dr. ','Victoria','TX',77904);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Adelle','Larsen',NULL,'[email protected]','683 West Kirkland Dr. ','East
Northport','NY',11731);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Kaylee','English',NULL,'[email protected]','8786 Fulton Rd. ','Hollis','NY',11423);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Corene','Wall',NULL,'[email protected]','9601 Ocean Rd. ','Atwater','CA',95301);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Regenia','Vaughan',NULL,'[email protected]','44 Stonybrook Street
','Mahopac','NY',10541);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Theo','Reese','(562) 215-2907','[email protected]','8755 W. Wild Horse St. ','Long
Beach','NY',11561);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Santos','Valencia',NULL,'[email protected]','7479 Carpenter Street
','Sunnyside','NY',11104);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Jeanice','Frost',NULL,'[email protected]','76 Devon Lane ','Ossining','NY',10562);
INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Syreeta','Hendricks',NULL,'[email protected]','193 Spruce Road
','Mahopac','NY',10541);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Jamaal','Albert',NULL,'[email protected]','853 Stonybrook Street
','Torrance','CA',90505);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Williemae','Holloway','(510) 246-8375','[email protected]','69 Cypress St.
','Oakland','CA',94603);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Araceli','Golden',NULL,'[email protected]','12 Ridgeview Ave. ','Fullerton','CA',92831);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Deloris','Burke',NULL,'[email protected]','895 Edgemont Drive ','Palos Verdes
Peninsula','CA',90274);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Brittney','Woodward',NULL,'[email protected]','960 River St. ','East
Northport','NY',11731);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Guillermina','Noble',NULL,'[email protected]','6 Del Monte Lane
','Baldwinsville','NY',13027);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Bernita','Mcdaniel',NULL,'[email protected]','2 Peg Shop Ave.
','Liverpool','NY',13090);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Melia','Brady',NULL,'[email protected]','907 Shirley Rd. ','Maspeth','NY',11378);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Zelma','Browning',NULL,'[email protected]','296 Second Street ','Astoria','NY',11102);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Janetta','Aguirre','(717) 670-2634','[email protected]','214 Second Court
','Lancaster','NY',14086);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Ronna','Butler',NULL,'[email protected]','9438 Plymouth Court ','Encino','CA',91316);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Kathie','Freeman',NULL,'[email protected]','667 Temple Dr.
','Queensbury','NY',12804);
INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Tangela','Quinn',NULL,'[email protected]','4 S. Purple Finch Road ','Richmond
Hill','NY',11418);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Mozelle','Carter','(281) 489-9656','[email protected]','895 Chestnut Ave.
','Houston','TX',77016);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Onita','Johns',NULL,'[email protected]','32 Glen Creek Lane ','Elmont','NY',11003);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Bennett','Armstrong',NULL,'[email protected]','688 Walnut Street
','Bethpage','NY',11714);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Monika','Berg',NULL,'[email protected]','369 Vernon Dr. ','Encino','CA',91316);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Bridgette','Guerra',NULL,'[email protected]','9982 Manor Drive ','San
Lorenzo','CA',94580);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Cesar','Jackson',NULL,'[email protected]','8068 N. Griffin Ave. ','Liverpool','NY',13090);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Caroll','Hays',NULL,'[email protected]','9381 Wrangler St. ','Fairport','NY',14450);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Cleotilde','Booth',NULL,'[email protected]','17 Corona St. ','Sugar Land','TX',77478);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Gertrud','Rhodes',NULL,'[email protected]','9961 Meadowbrook Street
','Merrick','NY',11566);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Tu','Ramirez',NULL,'[email protected]','24 W. Courtland Street ','East
Elmhurst','NY',11369);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Saturnina','Garner',NULL,'[email protected]','8538 Fairground St.
','Glendora','CA',91740);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Fran','Yang',NULL,'[email protected]','440 Pearl St. ','Utica','NY',13501);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Diana','Guerra',NULL,'[email protected]','45 Chapel Ave. ','Merrick','NY',11566);
INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Lolita','Mosley','(281) 363-3309','[email protected]','376 S. High Ridge St.
','Houston','TX',77016);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Pamala','Henry',NULL,'[email protected]','197 Bridgeton Ave. ','Bronx','NY',10451);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Damien','Dorsey',NULL,'[email protected]','161 Old York Street ','Central
Islip','NY',11722);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Latasha','Stanley',NULL,'[email protected]','8068 Fordham Drive ','Rockville
Centre','NY',11570);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Neil','Mccall',NULL,'[email protected]','7476 Oakland Dr. ','San Carlos','CA',94070);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Elinore','Aguilar',NULL,'[email protected]','9766 Rockcrest Ave. ','San
Angelo','TX',76901);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Alica','Hunter',NULL,'[email protected]','8 San Juan Drive ','East Elmhurst','NY',11369);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Tenisha','Lyons',NULL,'[email protected]','78 E. Rock Creek Street
','Amityville','NY',11701);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Bobbie','Foster',NULL,'[email protected]','988 Pineknoll Ave. ','Desoto','TX',75115);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Kanesha','Vega',NULL,'[email protected]','771 E. Oxford Drive ','Rome','NY',13440);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Lorrie','Becker',NULL,'[email protected]','19 North Court ','Garland','TX',75043);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Tommie','Melton','(916) 802-2952','[email protected]','8 West Old York St.
','Sacramento','CA',95820);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Jayne','Kirkland',NULL,'[email protected]','7800 Second Lane ','Rowlett','TX',75088);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Katelin','Kennedy',NULL,'[email protected]','286 Myrtle Lane ','Rocklin','CA',95677);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Tomasa','Carson',NULL,'[email protected]','10 Clark Avenue ','East
Elmhurst','NY',11369);
INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Takako','Casey',NULL,'[email protected]','7548 Court Lane ','Bronx','NY',10451);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Petronila','Norris',NULL,'[email protected]','72 South Marshall Lane ','South El
Monte','CA',91733);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Melanie','Hayes',NULL,'[email protected]','5 N. Hall Dr. ','Liverpool','NY',13090);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Georgeann','Waller',NULL,'[email protected]','9797 Bald Hill Ave. ','North
Tonawanda','NY',14120);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Abby','Gamble',NULL,'[email protected]','60 Myers Dr. ','Amityville','NY',11701);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Parker','Prince',NULL,'[email protected]','21 Sulphur Springs Drive ','Port Jefferson
Station','NY',11776);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Keri','Bridges',NULL,'[email protected]','8504 Brickell Ave. ','Richardson','TX',75080);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Chi','Goff',NULL,'[email protected]','3 W. Glen Ridge Avenue ','Palos Verdes
Peninsula','CA',90274);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Ashanti','Parks',NULL,'[email protected]','846 N. Helen St. ','Baldwin','NY',11510);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Sarai','Mckee','(716) 912-8110','[email protected]','641 Glenwood Avenue
','Buffalo','NY',14215);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Zina','Bonner',NULL,'[email protected]','9312 8th Street ','San Lorenzo','CA',94580);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Lizzie','Joyner',NULL,'[email protected]','8541 Roberts St. ','Coachella','CA',92236);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Tiesha','Daniel',NULL,'[email protected]','6 West Bohemia Lane
','Scarsdale','NY',10583);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Armand','Whitehead',NULL,'[email protected]','639 Harvey St.
','Lindenhurst','NY',11757);
INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Teofila','Fischer',NULL,'[email protected]','1 West Brickyard St. ','Huntington
Station','NY',11746);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Lissa','Vargas',NULL,'[email protected]','517 Victoria Ave. ','Oswego','NY',13126);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Yan','Mcgowan',NULL,'[email protected]','8960 Newport Ave. ','Duarte','CA',91010);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Titus','Bullock',NULL,'[email protected]','29 Oxford Avenue ','Hollis','NY',11423);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Arvilla','Osborn',NULL,'[email protected]','60 Acacia Lane ','Upland','CA',91784);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Marjorie','Logan',NULL,'[email protected]','95 Grandrose St. ','Franklin
Square','NY',11010);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Marvin','Mullins','(619) 635-2027','[email protected]','7489 Redwood Drive ','San
Diego','CA',92111);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Tena','Cruz',NULL,'[email protected]','1 South St. ','Farmingdale','NY',11735);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Corrina','Sawyer','(248) 370-1364','[email protected]','95 Briarwood Lane
','Troy','NY',12180);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Sharyn','Hopkins',NULL,'[email protected]','4 South Temple Ave.
','Baldwinsville','NY',13027);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Letitia','Franco',NULL,'[email protected]','607 Lakeview Drive ','Saratoga
Springs','NY',12866);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Floretta','Higgins',NULL,'[email protected]','870 Lilac Dr. ','Bayside','NY',11361);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Louanne','Martin',NULL,'[email protected]','1 Campfire Ave. ','Yuba
City','CA',95993);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Violet','Valenzuela',NULL,'[email protected]','8668 Piper Street
','Plattsburgh','NY',12901);
INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Carie','Kidd',NULL,'[email protected]','6 East Clinton Street ','Monroe','NY',10950);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Kellie','Franco',NULL,'[email protected]','444 South Walnut Rd.
','Commack','NY',11725);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Nichelle','Howell',NULL,'[email protected]','7670 Forest St. ','Scarsdale','NY',10583);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Marisol','Goodman',NULL,'[email protected]','864 East Cherry St.
','Canandaigua','NY',14424);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Sylvie','Wilkerson',NULL,'[email protected]','750 Central Ave. ','Syosset','NY',11791);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Katharina','Bates',NULL,'[email protected]','54 South Greenview Drive
','Campbell','CA',95008);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Marget','Hodge',NULL,'[email protected]','7199 Selby Lane ','Woodhaven','NY',11421);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Raul','Melendez',NULL,'[email protected]','9772 Manhattan St.
','Elmhurst','NY',11373);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Cecil','Hopper',NULL,'[email protected]','471 Glenlake Ave. ','Central Islip','NY',11722);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Shae','Hickman',NULL,'[email protected]','740 Pin Oak Street ','Floral
Park','NY',11001);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Monica','Sears','(408) 704-8863','[email protected]','57 Glenholme St. ','San
Jose','CA',95127);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Ollie','Zimmerman','(657) 648-2863','[email protected]','69 Wood Rd.
','Anaheim','CA',92806);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Shila','White',NULL,'[email protected]','94 Lakeshore Street ','Orchard Park','NY',14127);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Yuk','Vega',NULL,'[email protected]','413 Wood St. ','West Hempstead','NY',11552);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Eliana','Silva',NULL,'[email protected]','7119 Summer Rd. ','Farmingdale','NY',11735);
INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Thalia','Horne',NULL,'[email protected]','9312 Harvard Street ','Amityville','NY',11701);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Rey','Lindsay',NULL,'[email protected]','16 Philmont St. ','Monroe','NY',10950);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Merlene','Vinson',NULL,'[email protected]','431 Vine Dr. ','Euless','TX',76039);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Dacia','William',NULL,'[email protected]','62 Cypress Drive ','Sugar Land','TX',77478);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Le','Wood',NULL,'[email protected]','90 Primrose Dr. ','Pittsford','NY',14534);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Thalia','Dillard',NULL,'[email protected]','987 NE. Gates Street ','San
Angelo','TX',76901);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Luz','House','(559) 114-2580','[email protected]','491 Railroad Street ','Fresno','CA',93706);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Lucy','Woods',NULL,'[email protected]','8437 West Rockaway St. ','Palos Verdes
Peninsula','CA',90274);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Shena','Carter',NULL,'[email protected]','72 University Road ','Howard
Beach','NY',11414);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Robena','Hill','(361) 598-4414','[email protected]','263 Cross St. ','Corpus
Christi','TX',78418);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Jeni','Booker',NULL,'[email protected]','546 Railroad Dr. ','South El Monte','CA',91733);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Herlinda','Stone',NULL,'[email protected]','725 Gulf St. ','Canandaigua','NY',14424);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Lavina','Dejesus',NULL,'[email protected]','59 E. Valley Avenue
','Newburgh','NY',12550);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Erlinda','Nielsen',NULL,'[email protected]','728 Oxford Lane ','Maspeth','NY',11378);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Terrance','Lynn',NULL,'[email protected]','91 East Buckingham Drive
','Plattsburgh','NY',12901);
INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Walton','Dejesus',NULL,'[email protected]','15 Washington Rd.
','Lockport','NY',14094);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Wes','Stanton','(248) 247-5074','[email protected]','8662 Tunnel Street
','Troy','NY',12180);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Tanesha','Hampton',NULL,'[email protected]','19 Belmont Ave.
','Syosset','NY',11791);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Boyd','Irwin',NULL,'[email protected]','221 Whitemarsh St. ','Hamburg','NY',14075);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Delbert','Wilkins',NULL,'[email protected]','420 Greenview St. ','Coram','NY',11727);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Brianna','Moss','(516) 156-8031','[email protected]','4 Longfellow St.
','Hempstead','NY',11550);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Dorthey','Jackson','(281) 926-8010','[email protected]','9768 Brookside St.
','Houston','TX',77016);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Sarita','Parks',NULL,'[email protected]','7809 Second Lane ','Forney','TX',75126);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Shonta','Mercer',NULL,'[email protected]','319 NE. La Sierra Avenue
','Massapequa','NY',11758);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Jone','Bernard','(657) 536-5165','[email protected]','99 Longbranch Court
','Anaheim','CA',92806);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Wanita','Davenport',NULL,'[email protected]','525 Dogwood Ave. ','Spring
Valley','NY',10977);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Cleopatra','Tate',NULL,'[email protected]','97 N. Glenwood St. ','East
Elmhurst','NY',11369);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Ramiro','Byers',NULL,'[email protected]','16 Pleasant St. ','Saint Albans','NY',11412);
INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Nicholas','Vazquez',NULL,'[email protected]','9 Roosevelt Street ','West
Hempstead','NY',11552);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Janae','Doyle',NULL,'[email protected]','760 Rose Ave. ','Jackson Heights','NY',11372);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Hans','Price',NULL,'[email protected]','51 Glendale Road ','Port Chester','NY',10573);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Miquel','Neal',NULL,'[email protected]','9564 Deerfield Lane ','Staten
Island','NY',10301);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Stefany','Potter',NULL,'[email protected]','256 South Academy St. ','Saratoga
Springs','NY',12866);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Bernetta','Marquez',NULL,'[email protected]','626 E. Dunbar Street
','Smithtown','NY',11787);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Julee','Woodard',NULL,'[email protected]','869 Summerhouse Dr. ','Richmond
Hill','NY',11418);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Meredith','Bryan',NULL,'[email protected]','8935 E. Oxford St. ','Spring
Valley','NY',10977);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Weldon','Michael',NULL,'[email protected]','9952 Nut Swamp St.
','Huntington','NY',11743);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Joesph','Delacruz',NULL,'[email protected]','184 Cypress Street ','Atwater','CA',95301);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Katherina','Odom',NULL,'[email protected]','897 N. Oak Drive
','Plainview','NY',11803);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Laraine','Robbins',NULL,'[email protected]','8214 E. Pin Oak Lane ','San
Angelo','TX',76901);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Jenise','Preston',NULL,'[email protected]','9 Littleton Drive ','Helotes','TX',78023);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Lory','Page',NULL,'[email protected]','58 Summerhouse Street ','Bay Shore','NY',11706);
INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Charlyn','Cantrell',NULL,'[email protected]','8756 Euclid St. ','West Islip','NY',11795);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Carola','Rodriquez',NULL,'[email protected]','9433 Heritage Lane
','Banning','CA',92220);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Alane','Kennedy',NULL,'[email protected]','34 Green Lake Street ','Spring
Valley','NY',10977);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Regina','Burns',NULL,'[email protected]','713 Buckingham St. ','Garland','TX',75043);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Omer','Estrada',NULL,'[email protected]','9 Honey Creek Street ','Rowlett','TX',75088);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Crystle','Gilliam',NULL,'[email protected]','86 Edgewater Road
','Smithtown','NY',11787);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Kam','Wilder',NULL,'[email protected]','500 West Clay Ave. ','Newburgh','NY',12550);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Margert','Stevens',NULL,'[email protected]','502 North Poplar St. ','Rome','NY',13440);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Tomika','Larson',NULL,'[email protected]','254 Canal St. ','Woodside','NY',11377);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Jeromy','Burch','(408) 955-8238','[email protected]','889 Mulberry Street ','San
Jose','CA',95127);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Lena','Mills',NULL,'[email protected]','42 Homestead St. ','Woodhaven','NY',11421);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Loreta','Johnston',NULL,'[email protected]','39 Lafayette Dr. ','Spring
Valley','NY',10977);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Nettie','Mcdaniel',NULL,'[email protected]','7004 E. Wakehurst St. ','South Ozone
Park','NY',11420);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Karla','Kirk',NULL,'[email protected]','9718 Harvard Rd. ','Palos Verdes
Peninsula','CA',90274);
INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Regine','Gonzales','(805) 763-4045','[email protected]','798 Court Drive
','Oxnard','CA',93035);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Miriam','Baker',NULL,'[email protected]','90 Studebaker St. ','Uniondale','NY',11553);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Jeanie','Kirkland',NULL,'[email protected]','7643 Old Theatre St. ','Santa
Clara','CA',95050);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Marquerite','Dawson',NULL,'[email protected]','37 Hamilton Court
','Garland','TX',75043);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Babara','Ochoa',NULL,'[email protected]','872 Smith Store St. ','Scarsdale','NY',10583);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Nova','Hess',NULL,'[email protected]','773 South Lafayette St. ','Duarte','CA',91010);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Carley','Reynolds',NULL,'[email protected]','2 Snake Hill Drive ','South El
Monte','CA',91733);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Carissa','Foreman',NULL,'[email protected]','69C N. Ridge Rd. ','Maspeth','NY',11378);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Genoveva','Tyler','(212) 152-6381','[email protected]','8121 Windfall Ave. ','New
York','NY',10002);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Deane','Sears',NULL,'[email protected]','3 Bradford Court ','Pittsford','NY',14534);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Karey','Steele',NULL,'[email protected]','8879 Kent Lane ','Farmingdale','NY',11735);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Olevia','Pitts',NULL,'[email protected]','39 Fieldstone Drive ','Redondo Beach','CA',90278);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Jenniffer','Bullock',NULL,'[email protected]','38 Oxford Avenue ','Bay
Shore','NY',11706);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Jeniffer','Ratliff',NULL,'[email protected]','510 Rocky River Court ','Floral
Park','NY',11001);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Klara','Stanley',NULL,'[email protected]','603 Mechanic St. ','Webster','NY',14580);
INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Morton','Lee',NULL,'[email protected]','313 Ridge St. ','San Angelo','TX',76901);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Ken','Charles',NULL,'[email protected]','9124 W. Piper Lane ','Monsey','NY',10952);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Hedwig','Paul',NULL,'[email protected]','422 Manor Ave. ','Apple Valley','CA',92307);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Sharla','Flynn','(805) 478-7724','[email protected]','7 Brown Drive
','Oxnard','CA',93035);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Damian','Dawson',NULL,'[email protected]','528 St Margarets Street
','Liverpool','NY',13090);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Toya','Pratt','(562) 218-6405','[email protected]','485 San Pablo Drive ','Long
Beach','NY',11561);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Graciela','Barber','(805) 656-6987','[email protected]','1 E. Young St.
','Oxnard','CA',93035);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Bong','Hebert',NULL,'[email protected]','545 Brook St. ','Torrance','CA',90505);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Ayanna','Rhodes',NULL,'[email protected]','7425 Pheasant St. ','Hicksville','NY',11801);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Dorine','Roberson',NULL,'[email protected]','396 Meadowbrook Lane ','Santa
Cruz','CA',95060);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Addie','Hahn',NULL,'[email protected]','8165 Baker Ave. ','Franklin Square','NY',11010);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Edythe','Valencia',NULL,'[email protected]','9346 Wall St. ','North
Tonawanda','NY',14120);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Andy','O''neill',NULL,'andy.o''[email protected]','9544 Mulberry Drive ','Rego Park','NY',11374);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Luis','Tyler',NULL,'[email protected]','9568 Campfire Circle ','Amarillo','TX',79106);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Clelia','Workman',NULL,'[email protected]','620 North Somerset St. ','New
Windsor','NY',12553);
INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Ashely','Holmes',NULL,'[email protected]','45 High Ridge Ave.
','Farmingdale','NY',11735);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Candis','Harding',NULL,'[email protected]','33 NW. Cambridge Ave. ','Ballston
Spa','NY',12020);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Marni','Bolton','(717) 670-6268','[email protected]','7469 Plymouth Ave.
','Lancaster','NY',14086);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Minerva','Decker','(281) 271-6390','[email protected]','794 Greenrose Street
','Houston','TX',77016);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Alpha','King',NULL,'[email protected]','14 Henry Smith St. ','Rockville
Centre','NY',11570);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Harris','Pittman',NULL,'[email protected]','404 Cherry Hill Road
','Jamaica','NY',11432);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Stephaine','Riddle',NULL,'[email protected]','199 Vermont Court
','Brooklyn','NY',11201);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Michel','Blankenship',NULL,'[email protected]','382 West Hill Dr.
','Forney','TX',75126);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Denis','Logan',NULL,'[email protected]','121 Rockcrest Street ','Ridgecrest','CA',93555);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Jutta','Everett',NULL,'[email protected]','27 Taylor Ave. ','Selden','NY',11784);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Priscilla','Wilkins','(229) 322-2269','[email protected]','653 Pawnee Rd.
','Albany','NY',12203);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Gilma','Dejesus',NULL,'[email protected]','777 Thompson Ave.
','Scarsdale','NY',10583);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Buford','Bridges','(248) 604-7346','[email protected]','239 Oak Valley Court
','Troy','NY',12180);
INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Elenore','Hensley',NULL,'[email protected]','7037 Aspen St.
','Hamburg','NY',14075);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Ross','Pugh',NULL,'[email protected]','8598 Saxon St. ','North Tonawanda','NY',14120);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Judith','Finley',NULL,'[email protected]','474 West Bank Road
','Whitestone','NY',11357);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Wai','Soto',NULL,'[email protected]','30 Arch Drive ','Bethpage','NY',11714);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Carline','Collier','(559) 810-6070','[email protected]','28 Trenton Lane
','Fresno','CA',93706);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Casey','Gill',NULL,'[email protected]','636 Prospect Avenue ','Port Washington','NY',11050);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Darcie','Morgan','(442) 618-7068','[email protected]','476 East Adams Ave.
','Oceanside','NY',11572);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Lucio','Sherman',NULL,'[email protected]','842 Corona Ave. ','Smithtown','NY',11787);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Clementine','Mooney',NULL,'[email protected]','678 Charles Court
','Mcallen','TX',78501);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Anya','Contreras',NULL,'[email protected]','38 Old Fairground St. ','East
Northport','NY',11731);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Scarlet','Yates',NULL,'[email protected]','687 Shirley St. ','Patchogue','NY',11772);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Moses','Pope',NULL,'[email protected]','654 Theatre Street ','Lawndale','CA',90260);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Barbera','Riggs',NULL,'[email protected]','12 Gartner Drive ','Plainview','NY',11803);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Kiana','Rivera',NULL,'[email protected]','9 Sheffield Dr. ','Richmond Hill','NY',11418);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Danielle','Bond',NULL,'[email protected]','8589 Shub Farm Street
','Patchogue','NY',11772);
INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Whitney','Estes','(631) 315-4020','[email protected]','454 Bear Hill Street
','Brentwood','NY',11717);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Molly','Langley',NULL,'[email protected]','63 Bridgeton Street ','Holbrook','NY',11741);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Chelsey','Hardin',NULL,'[email protected]','13 Brickyard Street ','Deer
Park','NY',11729);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Jenee','Rasmussen','(916) 219-1774','[email protected]','19 George Lane
','Sacramento','CA',95820);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Freddie','Mathis',NULL,'[email protected]','31 Shady St. ','Euless','TX',76039);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Mariana','Strong',NULL,'[email protected]','972 Dunbar Dr. ','Santa Clara','CA',95050);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Winfred','Harris',NULL,'[email protected]','734 Glen Eagles St. ','East
Meadow','NY',11554);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Jeromy','Elliott',NULL,'[email protected]','7112 Laurel Street ','Bay Shore','NY',11706);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Verona','O''neill',NULL,'verona.o''[email protected]','8279 W. Sussex St. ','Selden','NY',11784);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Elvera','Peck',NULL,'[email protected]','759 Lakewood Street ','Banning','CA',92220);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Cindi','Larson',NULL,'[email protected]','896 Golden Star Rd. ','Howard Beach','NY',11414);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Felice','Guzman',NULL,'[email protected]','7 Creekside Lane ','Canyon
Country','CA',91387);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Le','Deleon',NULL,'[email protected]','58 Clark Court ','Banning','CA',92220);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Manie','Sanchez',NULL,'[email protected]','471 Illinois Ave.
','Queensbury','NY',12804);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Rutha','Howell',NULL,'[email protected]','9247 Jones Street ','Canyon
Country','CA',91387);
INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Natosha','Rowland',NULL,'[email protected]','51 Elmwood St. ','Ballston
Spa','NY',12020);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Jessika','Bray',NULL,'[email protected]','37 East Greystone St. ','San Pablo','CA',94806);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Delila','Hamilton',NULL,'[email protected]','7451 East James Ave. ','Palos Verdes
Peninsula','CA',90274);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Dionne','Norris',NULL,'[email protected]','9993 Greenview Circle ','Niagara
Falls','NY',14304);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Muriel','Juarez',NULL,'[email protected]','8073 Cemetery Drive ','Palos Verdes
Peninsula','CA',90274);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Cecelia','Gill',NULL,'[email protected]','372 Silver Spear Dr. ','Mcallen','TX',78501);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Magda','Eaton',NULL,'[email protected]','860 Middle River Street ','Ossining','NY',10562);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Ivonne','Yang','(915) 181-1950','[email protected]','7359 North Lake View St. ','El
Paso','TX',79930);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Kasie','Rodriquez',NULL,'[email protected]','7 North Beech St. ','Ballston
Spa','NY',12020);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Eleni','Gordon',NULL,'[email protected]','583 W. San Carlos Street ','Richmond
Hill','NY',11418);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Maurice','Norton',NULL,'[email protected]','32 Mayflower Dr.
','Atwater','CA',95301);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Cristobal','Hutchinson',NULL,'[email protected]','58 Washington Avenue
','Lawndale','CA',90260);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Flossie','Holder',NULL,'[email protected]','8459 W. Newport Court ','Massapequa
Park','NY',11762);
INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Erma','Salinas',NULL,'[email protected]','347 Sheffield St. ','Merrick','NY',11566);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Earl','Stanley',NULL,'[email protected]','569 Lake Lane ','Elmhurst','NY',11373);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Maribel','William',NULL,'[email protected]','65 Magnolia Ave. ','Torrance','CA',90505);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Johnathan','Velazquez',NULL,'[email protected]','9680 E. Somerset Street
','Pleasanton','CA',94566);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Rodrick','Shelton',NULL,'[email protected]','7157 Addison Street ','Canyon
Country','CA',91387);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Ferne','Kline',NULL,'[email protected]','303 Shady St. ','Fullerton','CA',92831);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Rubin','Decker','(716) 950-9835','[email protected]','9875 Shady Ave.
','Buffalo','NY',14215);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Dortha','Jarvis','(442) 919-8256','[email protected]','76 Prince Drive
','Oceanside','NY',11572);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Mariela','Huffman',NULL,'[email protected]','531 Fieldstone Road ','Garden
City','NY',11530);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Mellisa','Farley',NULL,'[email protected]','21 West Princess St. ','Central
Islip','NY',11722);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Myung','Hooper',NULL,'[email protected]','951 Mill Road ','Elmont','NY',11003);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Angelina','Lloyd',NULL,'[email protected]','9593 North Sherman Dr. ','Apple
Valley','CA',92307);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Trinity','Riddle',NULL,'[email protected]','23 Oakland Lane ','Ballston Spa','NY',12020);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Barton','Crosby',NULL,'[email protected]','896 Edgewater St. ','Bellmore','NY',11710);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Claudio','Wise',NULL,'[email protected]','810 Oxford Ave. ','Kingston','NY',12401);
INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Katheleen','Marks',NULL,'[email protected]','69 North Tower St.
','Longview','TX',75604);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Deja','Chaney',NULL,'[email protected]','52 Woodside Ave. ','Jamaica','NY',11432);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Queenie','Vance',NULL,'[email protected]','172 Arcadia Ave. ','Ozone
Park','NY',11417);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Josh','Shaw',NULL,'[email protected]','212 North Leeton Ridge Street ','Hopewell
Junction','NY',12533);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Pinkie','Kirkland',NULL,'[email protected]','18 Myers St. ','San Angelo','TX',76901);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Lavette','Wright',NULL,'[email protected]','6 Windsor Street
','Ronkonkoma','NY',11779);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Mark','Garrett',NULL,'[email protected]','285 Rosewood Dr. ','Monroe','NY',10950);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Myesha','Burgess',NULL,'[email protected]','306 Trenton Rd.
','Campbell','CA',95008);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Justina','Long',NULL,'[email protected]','39 Littleton Ave. ','South El Monte','CA',91733);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Brenda','Tate',NULL,'[email protected]','36 Hilltop Street ','San Angelo','TX',76901);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Rayna','Perry',NULL,'[email protected]','7238 Oakland St. ','Ozone Park','NY',11417);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Randolph','Chase',NULL,'[email protected]','828 Bridle Ave. ','San
Lorenzo','CA',94580);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Jaimee','Day',NULL,'[email protected]','7534 Whitemarsh Ave. ','Poughkeepsie','NY',12601);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Susann','Bass',NULL,'[email protected]','21 Old Rock Maple Ave. ','Commack','NY',11725);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Leola','Gould',NULL,'[email protected]','8 Kirkland St. ','Astoria','NY',11102);
INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Virgil','Frost',NULL,'[email protected]','9798 Beacon St. ','Levittown','NY',11756);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Mireille','Puckett','(805) 961-9909','[email protected]','378 Purple Finch Drive
','Oxnard','CA',93035);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Keturah','Massey',NULL,'[email protected]','189 Arnold Drive ','Banning','CA',92220);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Charmain','Webster',NULL,'[email protected]','36 East Stonybrook Rd.
','Richardson','TX',75080);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Barry','Buckner',NULL,'[email protected]','8779 High Noon Rd.
','Centereach','NY',11720);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Boyce','Burks',NULL,'[email protected]','879 Harvey Dr. ','Sunnyside','NY',11104);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Monty','Frost','(516) 460-5396','[email protected]','76 Foxrun Dr.
','Hempstead','NY',11550);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Tiny','French',NULL,'[email protected]','7163 Hall St. ','Plainview','NY',11803);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Clementina','Sargent',NULL,'[email protected]','9853 Catherine Road
','Rome','NY',13440);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Danny','Kim',NULL,'[email protected]','74 Essex Drive ','South Ozone Park','NY',11420);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Sophia','Mcmillan',NULL,'[email protected]','8541 S. Pleasant Street
','Uniondale','NY',11553);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Christia','Carson',NULL,'[email protected]','220 Orchard Street ','Helotes','TX',78023);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Jennie','Middleton',NULL,'[email protected]','95 High Noon Dr.
','Upland','CA',91784);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Jame','Riggs',NULL,'[email protected]','9237 Hudson Drive ','Bay Shore','NY',11706);
INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Rayford','Simon',NULL,'[email protected]','998 Whitemarsh Road ','Mountain
View','CA',94043);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Annett','Garrett',NULL,'[email protected]','19 Euclid Lane ','Scarsdale','NY',10583);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Hayden','Cross',NULL,'[email protected]','90 Pumpkin Hill St. ','Apple
Valley','CA',92307);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Rolanda','Larsen',NULL,'[email protected]','5 West University Court
','Woodhaven','NY',11421);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Jayme','Zamora',NULL,'[email protected]','2 Ridge Lane ','Springfield
Gardens','NY',11413);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Hope','Cotton',NULL,'[email protected]','9092 Blue Spring Dr. ','Redondo
Beach','CA',90278);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Vikki','Erickson',NULL,'[email protected]','24 Jones Street ','Kingston','NY',12401);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Fransisca','Nicholson',NULL,'[email protected]','945 Schoolhouse Street
','Glendora','CA',91740);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Mazie','Fernandez',NULL,'[email protected]','583 Harvard Ave.
','Webster','NY',14580);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Anderson','Martin',NULL,'[email protected]','9051 Hillside Dr.
','Canandaigua','NY',14424);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Gilberto','Parsons',NULL,'[email protected]','8115 North Edgewater Drive ','Middle
Village','NY',11379);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Charise','Burt','(559) 888-2229','[email protected]','582 Creek St. ','Fresno','CA',93706);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Cameron','Carroll',NULL,'[email protected]','9133 South Halifax Ave.
','Longview','TX',75604);
INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Melani','Jarvis',NULL,'[email protected]','8 Tunnel St. ','Maspeth','NY',11378);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Javier','Nichols',NULL,'[email protected]','8944 Marconi St. ','Rowlett','TX',75088);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Justina','Jenkins',NULL,'[email protected]','8236 Creek St. ','Baldwin','NY',11510);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Hortencia','Graham',NULL,'[email protected]','7764 Greenrose Street
','Euless','TX',76039);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Christia','Wilkins',NULL,'[email protected]','7062 Willow Court
','Woodside','NY',11377);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Eliz','Whitney',NULL,'[email protected]','523 Crescent Court ','Fullerton','CA',92831);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Justin','Newton',NULL,'[email protected]','93 Shore Rd. ','Apple Valley','CA',92307);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Aron','Wiggins','(442) 497-3353','[email protected]','6 Bradford St.
','Oceanside','NY',11572);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Chere','Hardin',NULL,'[email protected]','763 Fulton Road ','Brooklyn','NY',11201);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Merideth','Preston',NULL,'[email protected]','794 Rockaway St.
','Poughkeepsie','NY',12601);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Jeniffer','Slater',NULL,'[email protected]','30 Old Orange Lane ','Schenectady','NY',12302);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Laureen','Paul',NULL,'[email protected]','617 Squaw Creek Rd. ','Bellmore','NY',11710);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Berna','Moore',NULL,'[email protected]','7230 Lafayette Drive ','Bronx','NY',10451);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Shiela','Calderon',NULL,'[email protected]','844 Albany St. ','Rocklin','CA',95677);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Sharie','Alvarez','(212) 211-7621','[email protected]','987 West Leatherwood Dr. ','New
York','NY',10002);
INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Bettie','Glover',NULL,'[email protected]','9083 Addison Dr. ','Euless','TX',76039);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Marilyn','Frank',NULL,'[email protected]','8878 Branch Street ','Port Chester','NY',10573);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Sheba','Knapp',NULL,'[email protected]','86 Gates Street ','Woodside','NY',11377);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Aleta','Mack',NULL,'[email protected]','8869 W. Edgemont Lane ','Bay
Shore','NY',11706);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Reena','Higgins',NULL,'[email protected]','900 South Columbia Street ','Canyon
Country','CA',91387);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Ami','Mcmahon',NULL,'[email protected]','566 Hilldale Drive ','Sunnyside','NY',11104);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Somer','Jordan',NULL,'[email protected]','7046 Helen Avenue ','Huntington
Station','NY',11746);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Scarlet','Reed',NULL,'[email protected]','151 S. Myers Court ','Bronx','NY',10451);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Trisha','Johnson','(717) 126-8787','[email protected]','59 Wild Horse St.
','Lancaster','NY',14086);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Majorie','Wyatt',NULL,'[email protected]','8507 Miller St. ','South Ozone
Park','NY',11420);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Abbey','Pugh',NULL,'[email protected]','26 Market Drive ','Forest Hills','NY',11375);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Tamela','Harrell',NULL,'[email protected]','7316 Cypress Rd. ','Central Islip','NY',11722);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Yanira','Bradshaw',NULL,'[email protected]','7484 Ann Court
','Smithtown','NY',11787);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Delana','Scott',NULL,'[email protected]','7372 Ridgeview St. ','Mount
Vernon','NY',10550);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Cassondra','Pruitt',NULL,'[email protected]','4 Alderwood Circle ','Merrick','NY',11566);
INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Jesica','Fields',NULL,'[email protected]','318 Country Dr. ','Commack','NY',11725);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Herta','Rollins',NULL,'[email protected]','287 1st Drive ','Mountain View','CA',94043);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Mi','Gray','(229) 813-2130','[email protected]','27 Roehampton Dr. ','Albany','NY',12203);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Jacalyn','Barnett',NULL,'[email protected]','7537 Swanson Street
','Maspeth','NY',11378);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Kanesha','Hudson','(510) 788-7298','[email protected]','8293 Gartner Drive
','Oakland','CA',94603);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Darren','Witt',NULL,'[email protected]','916 Hillcrest Ave. ','Coachella','CA',92236);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Mable','Pratt',NULL,'[email protected]','254 SW. Temple Street ','Coachella','CA',92236);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Christoper','Mccall',NULL,'[email protected]','72 Summit St. ','Bay
Shore','NY',11706);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Margorie','Wynn',NULL,'[email protected]','707 Schoolhouse St.
','Monsey','NY',10952);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Josef','Greer',NULL,'[email protected]','92 Summer Court ','Jamaica','NY',11432);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Tisa','Whitney',NULL,'[email protected]','549 Newbridge Dr. ','Monsey','NY',10952);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Tonda','Armstrong',NULL,'[email protected]','19 Forest Rd. ','Sunnyside','NY',11104);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Arvilla','Weiss',NULL,'[email protected]','477 Blue Spring St. ','Bay Shore','NY',11706);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Vashti','Rosario',NULL,'[email protected]','623 Johnson Circle ','Bronx','NY',10451);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Sheri','Cole','(408) 658-2285','[email protected]','479 Chapel Court ','San Jose','CA',95127);
INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Kandace','Giles',NULL,'[email protected]','30 NE. Walt Whitman Drive
','Wantagh','NY',11793);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Angie','Powers',NULL,'[email protected]','6 Rockland Dr. ','Pomona','CA',91768);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Van','Peters','(281) 658-7772','[email protected]','45 Fifth Dr. ','Houston','TX',77016);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Virgina','Berg',NULL,'[email protected]','804 South Purple Finch Drive ','Valley
Stream','NY',11580);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Olevia','Noel',NULL,'[email protected]','39 N. Rosewood Dr. ','Kingston','NY',12401);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Kaci','Gallegos',NULL,'[email protected]','8573 Halifax St. ','Ballston Spa','NY',12020);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Bev','Chang',NULL,'[email protected]','104 Rockville St. ','Ithaca','NY',14850);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Rodger','Rojas',NULL,'[email protected]','8442 Cooper Ave. ','Bayside','NY',11361);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Lavonne','Anderson',NULL,'[email protected]','9420 Wintergreen Court ','Floral
Park','NY',11001);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Blanca','Hooper',NULL,'[email protected]','340 Bald Hill St. ','Ozone Park','NY',11417);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Alysha','Powers',NULL,'[email protected]','39 West Marshall Ave. ','Forest
Hills','NY',11375);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Mary','Singleton',NULL,'[email protected]','474 Amerige Ave.
','Woodside','NY',11377);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Jina','Cooper',NULL,'[email protected]','8947 W. Lexington Rd. ','Howard
Beach','NY',11414);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Loni','Duncan',NULL,'[email protected]','80 Saxton Lane ','Rosedale','NY',11422);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Collene','Roman',NULL,'[email protected]','30 North Argyle Dr. ','Wappingers
Falls','NY',12590);
INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Mariette','Trevino',NULL,'[email protected]','4 Border Court ','Utica','NY',13501);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Candelaria','Coffey',NULL,'[email protected]','45 Newport Lane
','Merrick','NY',11566);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Yan','Trevino',NULL,'[email protected]','796 Jefferson Rd. ','Uniondale','NY',11553);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Elanor','Patrick',NULL,'[email protected]','51 Howard Ave. ','Victoria','TX',77904);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Klara','Mosley',NULL,'[email protected]','518 Devon Court ','Port Chester','NY',10573);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Rosalba','O''neal',NULL,'rosalba.o''[email protected]','7517 Pennsylvania St. ','Mount
Vernon','NY',10550);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Mina','Carrillo',NULL,'[email protected]','8659 Trenton Lane ','Uniondale','NY',11553);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Alesia','Horne',NULL,'[email protected]','9229 Amherst Lane ','Selden','NY',11784);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Kristen','Alvarez',NULL,'[email protected]','9778 North River St. ','Bronx','NY',10451);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Collin','Webster',NULL,'[email protected]','475 Cottage Rd. ','Howard Beach','NY',11414);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Ashlee','Pena',NULL,'[email protected]','966 Highland St. ','Whitestone','NY',11357);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Aimee','Merritt',NULL,'[email protected]','537 East Meadowbrook St.
','Flushing','NY',11354);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Rochelle','Ward',NULL,'[email protected]','7855 La Sierra Street
','Glendora','CA',91740);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Nelle','Beck',NULL,'[email protected]','8998 Wakehurst Drive ','Upland','CA',91784);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Kaila','Walters',NULL,'[email protected]','57 Gates Drive ','Elmhurst','NY',11373);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Aleta','Stone',NULL,'[email protected]','8 Elm Dr. ','Whitestone','NY',11357);
INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Leif','Short',NULL,'[email protected]','962 Carpenter Ave. ','San Angelo','TX',76901);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Lorrie','Pollard',NULL,'[email protected]','7834 Shore Ave. ','Ronkonkoma','NY',11779);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Vernita','Ball',NULL,'[email protected]','126 Arnold Dr. ','Los Banos','CA',93635);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Cyndi','Bush',NULL,'[email protected]','18 Smoky Hollow Drive ','Elmhurst','NY',11373);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Gertrude','Terry',NULL,'[email protected]','34 Airport Dr. ','Upland','CA',91784);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Virgen','Clemons',NULL,'[email protected]','354 Cactus Drive ','South El
Monte','CA',91733);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Fairy','Robinson',NULL,'[email protected]','8837 Joy Ridge St. ','Liverpool','NY',13090);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Laverna','Hernandez',NULL,'[email protected]','34 South Longfellow St.
','Niagara Falls','NY',14304);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Jeannie','Wilcox',NULL,'[email protected]','7744 Miles Dr. ','Franklin
Square','NY',11010);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Suellen','Mercado',NULL,'[email protected]','3 Taylor Drive
','Sunnyside','NY',11104);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Bart','Hess',NULL,'[email protected]','799 N. Maiden Street ','Kingston','NY',12401);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Alfredo','Dodson',NULL,'[email protected]','8960 Glenholme Dr.
','Depew','NY',14043);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Shaunda','Barnett',NULL,'[email protected]','9366 San Carlos Lane
','Longview','TX',75604);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Kerrie','Morton',NULL,'[email protected]','8772 State St. ','Pittsford','NY',14534);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Elouise','Fry',NULL,'[email protected]','49 Bohemia Street ','Canyon Country','CA',91387);
INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Augustus','Steele',NULL,'[email protected]','7474 N. Orchard St. ','Ballston
Spa','NY',12020);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Greta','Page',NULL,'[email protected]','8316 Augusta Drive ','Commack','NY',11725);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Kerrie','O''neill',NULL,'kerrie.o''[email protected]','69 Wellington Ave. ','Shirley','NY',11967);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Dannette','Guerrero',NULL,'[email protected]','68 Carriage Street ','San
Pablo','CA',94806);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Edra','Fitzgerald',NULL,'[email protected]','8892 Birchwood St. ','Central
Islip','NY',11722);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Jerome','Bolton',NULL,'[email protected]','9921 Argyle Street ','Carmel','NY',10512);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Conception','Slater',NULL,'[email protected]','5 Sunset Street
','Bellmore','NY',11710);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Octavia','Case','(212) 171-1335','[email protected]','40 Charles Road ','New
York','NY',10002);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Dexter','Roberts',NULL,'[email protected]','84 Thatcher Court
','Sunnyside','NY',11104);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Ginette','Edwards',NULL,'[email protected]','9262 NW. Center Ave.
','Baldwin','NY',11510);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Romaine','Haley',NULL,'[email protected]','737 Edgefield Drive ','Ithaca','NY',14850);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Gwendolyn','Miller',NULL,'[email protected]','90 Fordham Ave.
','Harlingen','TX',78552);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Luke','Fuller','(516) 363-2253','[email protected]','576 Cleveland Lane
','Hempstead','NY',11550);
INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Zoraida','Patton',NULL,'[email protected]','95 Grand Dr. ','Huntington
Station','NY',11746);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Georgeanna','Webster','(805) 885-8830','[email protected]','40 Creekside Circle
','Oxnard','CA',93035);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Krystin','Marshall',NULL,'[email protected]','10 Old Proctor Lane
','Poughkeepsie','NY',12601);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Vince','Schneider',NULL,'[email protected]','473 Corona Ave.
','Merrick','NY',11566);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Iola','Rasmussen',NULL,'[email protected]','283 N. Manor Station Dr.
','Monroe','NY',10950);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Valery','Saunders',NULL,'[email protected]','42 Marlborough St.
','Victoria','TX',77904);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Johna','Powers',NULL,'[email protected]','379 Central Ave. ','Deer Park','NY',11729);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Charleen','Hurst',NULL,'[email protected]','87 Country Avenue ','Utica','NY',13501);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Augustina','Joyner',NULL,'[email protected]','7931 Honey Creek Court ','Mount
Vernon','NY',10550);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Daisy','Ward',NULL,'[email protected]','45 Silver Spear Ave. ','Pomona','CA',91768);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Latonya','Dixon',NULL,'[email protected]','9399 Evergreen Street
','Garland','TX',75043);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Hipolito','Padilla',NULL,'[email protected]','311 E. Rose Avenue ','New
Rochelle','NY',10801);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Emmett','Casey',NULL,'[email protected]','893 Logan St. ','Valley Stream','NY',11580);
INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Kandi','Mcneil',NULL,'[email protected]','402 Border Street ','Massapequa
Park','NY',11762);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Luciano','Marsh',NULL,'[email protected]','7685 South Willow Drive
','Bellmore','NY',11710);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Julius','Holt',NULL,'[email protected]','386 Lower River Street ','East Meadow','NY',11554);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Holly','Nieves',NULL,'[email protected]','60 Cleveland St. ','Longview','TX',75604);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Douglass','Little',NULL,'[email protected]','294 Harvey Drive ','Duarte','CA',91010);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Izola','Hobbs',NULL,'[email protected]','685 Beacon Dr. ','Woodhaven','NY',11421);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Honey','Camacho',NULL,'[email protected]','934 2nd St. ','Bayside','NY',11361);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Laureen','Barry',NULL,'[email protected]','909 Ridge St. ','Orchard Park','NY',14127);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Katharine','Herrera',NULL,'[email protected]','395 SE. Branch St.
','Queensbury','NY',12804);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Sunshine','Rosario',NULL,'[email protected]','1 Chestnut Lane ','Jamaica','NY',11432);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Yevette','Todd',NULL,'[email protected]','119 Lakewood Rd. ','Ballston Spa','NY',12020);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Dorthea','Walker',NULL,'[email protected]','11 Third St. ','Port Washington','NY',11050);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Alane','Munoz','(914) 706-7576','[email protected]','8 Strawberry Dr.
','Yonkers','NY',10701);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Ayana','Keith','(805) 230-2101','[email protected]','182 Thorne Road
','Oxnard','CA',93035);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Caridad','Compton',NULL,'[email protected]','9575 SW. Kingston Court ','San
Lorenzo','CA',94580);
INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Earline','Ballard',NULL,'[email protected]','939 Lyme Road ','Mount
Vernon','NY',10550);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Nathanael','Bradley',NULL,'[email protected]','58 Third St.
','Amsterdam','NY',12010);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Chasidy','Tran',NULL,'[email protected]','9286 Anderson Street ','Vista','CA',92083);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Janella','Bright','(507) 616-2958','[email protected]','7317 Tower Dr.
','Rochester','NY',14606);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Josie','Schultz',NULL,'[email protected]','225 Mammoth Street ','Canyon
Country','CA',91387);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Ellsworth','Michael',NULL,'[email protected]','9982 White St.
','Carmel','NY',10512);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Jennette','Wooten',NULL,'[email protected]','8221 Bow Ridge Lane
','Rowlett','TX',75088);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Cassandra','Nichols',NULL,'[email protected]','4 Glenwood Circle
','Hicksville','NY',11801);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Courtney','Wyatt',NULL,'[email protected]','369 Arrowhead St. ','Garden
City','NY',11530);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Terese','Palmer',NULL,'[email protected]','8 Sugar Drive ','Bay Shore','NY',11706);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Sherita','Cherry',NULL,'[email protected]','9636 Old Cedarwood Street
','Liverpool','NY',13090);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Serina','Hensley',NULL,'[email protected]','53 Proctor Drive ','Jamaica','NY',11432);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Jeni','Farley',NULL,'[email protected]','4 Mill Lane ','Richmond Hill','NY',11418);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Everett','Vega',NULL,'[email protected]','7859 James Ave. ','Holbrook','NY',11741);
INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Latosha','Dalton','(661) 529-4501','[email protected]','59 E. Wintergreen Ave.
','Bakersfield','CA',93306);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Romelia','Myers',NULL,'[email protected]','8630 Brook St. ','Garden City','NY',11530);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Effie','Jenkins','(631) 477-1277','[email protected]','75 South Glen Eagles Court
','Brentwood','NY',11717);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Efren','Oliver',NULL,'[email protected]','9343 1st Rd. ','Nanuet','NY',10954);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Jerlene','Rios',NULL,'[email protected]','32 Griffin St. ','Plainview','NY',11803);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Bess','Mcbride',NULL,'[email protected]','9832 Winchester St. ','Garden
City','NY',11530);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Birdie','Kramer','(248) 725-2174','[email protected]','311 Newcastle Dr.
','Troy','NY',12180);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Collen','Hayes',NULL,'[email protected]','117 Eagle St. ','Smithtown','NY',11787);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Clare','Neal',NULL,'[email protected]','8922 Shady Ave. ','Mahopac','NY',10541);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Jeanett','Herman',NULL,'[email protected]','839 East Arch Street
','Lindenhurst','NY',11757);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Micki','Rutledge',NULL,'[email protected]','9868 Marvon Street ','Richmond
Hill','NY',11418);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Loise','Walker',NULL,'[email protected]','201 Glen Eagles St. ','Shirley','NY',11967);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Burma','Summers',NULL,'[email protected]','890 East Elmwood Street
','Freeport','NY',11520);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Myron','Ruiz',NULL,'[email protected]','45 Shadow Brook Lane ','Amityville','NY',11701);
INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Lashawna','Richardson',NULL,'[email protected]','9920 Purple Finch St.
','Baldwin','NY',11510);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Lavern','Orr',NULL,'[email protected]','913 N. Young Street ','Webster','NY',14580);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Alec','Peck',NULL,'[email protected]','4 W. Belmont St. ','Victoria','TX',77904);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Christopher','Richardson',NULL,'[email protected]','7846 Windfall Dr. ','Santa
Cruz','CA',95060);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Arminda','Weber',NULL,'[email protected]','6 Hill Field St. ','Bellmore','NY',11710);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Emmett','Hahn',NULL,'[email protected]','7727 6th St. ','Freeport','NY',11520);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Gertha','Mejia',NULL,'[email protected]','518 Orchard St. ','Flushing','NY',11354);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Garland','Weaver',NULL,'[email protected]','7161 Goldfield Court
','Amsterdam','NY',12010);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Jayson','Rutledge',NULL,'[email protected]','8672 Coffee St. ','Lake
Jackson','TX',77566);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Narcisa','Knapp',NULL,'[email protected]','435 Dogwood Dr. ','Amarillo','TX',79106);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Gayla','Sims',NULL,'[email protected]','98 Hall Street ','Lindenhurst','NY',11757);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Chelsey','Boyd',NULL,'[email protected]','9569 Birchpond Ave. ','Euless','TX',76039);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Catherine','Miles',NULL,'[email protected]','7189 Elm Dr. ','East Elmhurst','NY',11369);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Valeri','Marshall',NULL,'[email protected]','494 East Brewery Dr. ','East
Meadow','NY',11554);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Grace','Madden',NULL,'[email protected]','606 East Rocky River St. ','San
Pablo','CA',94806);
INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Joaquin','Hawkins','(657) 557-1746','[email protected]','3 Oklahoma Lane
','Anaheim','CA',92806);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Kirstie','Vazquez',NULL,'[email protected]','8006 Rockland Ave. ','Saratoga
Springs','NY',12866);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Yu','Mcdonald',NULL,'[email protected]','784 Pheasant Rd. ','Ossining','NY',10562);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Celestine','Jacobs',NULL,'[email protected]','87 Hanover Rd.
','Massapequa','NY',11758);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Justa','Thompson',NULL,'[email protected]','43 Manor Ave. ','Corona','NY',11368);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Lise','Alvarado',NULL,'[email protected]','9816 Newcastle Dr. ','Hamburg','NY',14075);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Pearl','Fox',NULL,'[email protected]','9415 Honey Creek Dr. ','Uniondale','NY',11553);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Travis','Goodman',NULL,'[email protected]','65 Rockcrest Dr. ','Los
Banos','CA',93635);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Shu','Mays',NULL,'[email protected]','996 St Margarets Lane ','Astoria','NY',11102);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Ezra','Fowler',NULL,'[email protected]','16 Pearl St. ','Nanuet','NY',10954);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Edda','Young',NULL,'[email protected]','50 S. Airport Street ','North
Tonawanda','NY',14120);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Lidia','Ashley',NULL,'[email protected]','8436 Meadow St. ','Baldwinsville','NY',13027);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Moira','Lester',NULL,'[email protected]','496 Greystone Court ','Jackson
Heights','NY',11372);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Tony','Hicks','(657) 260-6783','[email protected]','226 Carriage Street
','Anaheim','CA',92806);
INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Malinda','Baxter',NULL,'[email protected]','7698 Briarwood Ave.
','Whitestone','NY',11357);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Marlo','Jefferson',NULL,'[email protected]','39 Trenton Rd. ','Niagara
Falls','NY',14304);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Tiana','Henderson',NULL,'[email protected]','62 Orange St. ','Franklin
Square','NY',11010);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Wilda','Petersen',NULL,'[email protected]','899 Helen St. ','Jamaica','NY',11432);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Irving','Pitts',NULL,'[email protected]','346 College Court ','Torrance','CA',90505);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Sheree','Pena',NULL,'[email protected]','822 Virginia Court ','Staten Island','NY',10301);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Vance','Taylor','(717) 218-5607','[email protected]','8279 Military Dr.
','Lancaster','NY',14086);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Terra','Pickett',NULL,'[email protected]','7822 Depot Avenue ','Amsterdam','NY',12010);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Faustino','Delacruz',NULL,'[email protected]','88 West Greenview Street ','South
Richmond Hill','NY',11419);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Julienne','Moody','(682) 841-4643','[email protected]','35 South Oxford Rd. ','Fort
Worth','TX',76110);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Hee','Greer',NULL,'[email protected]','41 North Garfield Ave. ','Selden','NY',11784);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Whitney','Cash',NULL,'[email protected]','8 Surrey Street ','Hamburg','NY',14075);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Clarita','Curry',NULL,'[email protected]','661 Tanglewood Street ','Hollis','NY',11423);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Reita','Dickson',NULL,'[email protected]','7506 Mechanic Dr. ','Scarsdale','NY',10583);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Rosa','Kinney',NULL,'[email protected]','330 Highland Drive ','Brooklyn','NY',11201);
INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Buford','Gilbert',NULL,'[email protected]','9 East Ketch Harbour Street
','Bellmore','NY',11710);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Homer','Powers',NULL,'[email protected]','8207 East El Dorado Ave. ','Palos Verdes
Peninsula','CA',90274);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Rudolf','Gilliam',NULL,'[email protected]','17 Marlborough Circle ','Palos Verdes
Peninsula','CA',90274);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Andreas','Herman',NULL,'[email protected]','456 Rock Creek Street ','Mount
Vernon','NY',10550);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Max','Charles',NULL,'[email protected]','695 St Paul Street ','Glen Cove','NY',11542);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Tammera','Fischer','(510) 534-8845','[email protected]','405 Olive St.
','Oakland','CA',94603);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Joshua','Robertson',NULL,'[email protected]','81 Campfire Court
','Patchogue','NY',11772);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Larraine','Horn',NULL,'[email protected]','368 South Summerhouse Dr.
','Utica','NY',13501);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Andreas','Mayer',NULL,'[email protected]','8577 Galvin Circle ','New
Rochelle','NY',10801);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Lazaro','Moran',NULL,'[email protected]','83 E. Buttonwood Street ','Sugar
Land','TX',77478);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Afton','Juarez',NULL,'[email protected]','8330 Riverview Drive ','Coram','NY',11727);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Angele','Schroeder','(845) 804-6312','[email protected]','33 S. Shadow Brook
Street ','New City','NY',10956);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Ellena','Clements',NULL,'[email protected]','7918 Mulberry Street ','Santa
Monica','CA',90403);
INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Selene','Austin',NULL,'[email protected]','9042 Linda Circle ','Duarte','CA',91010);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Kimberely','Bowen','(248) 199-2582','[email protected]','88 Belmont Street
','Troy','NY',12180);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Mia','Delgado',NULL,'[email protected]','850 Wakehurst Drive ','Coachella','CA',92236);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Garret','Clay','(361) 687-9477','[email protected]','9516 College Drive ','Corpus
Christi','TX',78418);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Alejandro','Haney',NULL,'[email protected]','3 Griffin Street ','Wantagh','NY',11793);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Inge','Olsen','(562) 719-5041','[email protected]','295 Iroquois Rd. ','Long
Beach','NY',11561);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Christiane','Bradford',NULL,'[email protected]','9043 Woodland Ave. ','Orchard
Park','NY',14127);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Carter','Bentley',NULL,'[email protected]','145 North Bridle Ave.
','Carmel','NY',10512);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Sherie','Ayala',NULL,'[email protected]','5 Beech Ave. ','South El Monte','CA',91733);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Jamika','Acevedo',NULL,'[email protected]','8027 NW. Poplar St. ','Ozone
Park','NY',11417);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Shery','Randolph',NULL,'[email protected]','602 Laurel Street
','Ontario','CA',91762);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Lanita','Burton',NULL,'[email protected]','8980 Aspen Avenue ','Coachella','CA',92236);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Timothy','Byers',NULL,'[email protected]','8645 Devonshire Lane
','Ronkonkoma','NY',11779);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Jasmin','Young',NULL,'[email protected]','337 Beach Street ','Helotes','TX',78023);
INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Catarina','Mendez',NULL,'[email protected]','444 Hanover Court ','West
Islip','NY',11795);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Tajuana','Rollins',NULL,'[email protected]','724 N. Glen Creek Street
','Oswego','NY',13126);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Thad','Castro','(631) 943-1407','[email protected]','71 Surrey Ave.
','Brentwood','NY',11717);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Tena','Huber',NULL,'[email protected]','185 East Littleton St. ','Newburgh','NY',12550);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Dori','Alvarez',NULL,'[email protected]','8208 Brandywine St. ','Kingston','NY',12401);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Elmo','Arnold','(562) 841-9339','[email protected]','7616 Lyme Rd. ','Long
Beach','NY',11561);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Felicidad','Golden',NULL,'[email protected]','9712 Coffee Ave.
','Lockport','NY',14094);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Jenine','Crane','(682) 183-6555','[email protected]','7381 Alderwood Drive ','Fort
Worth','TX',76110);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Lea','Key',NULL,'[email protected]','7 Ocean St. ','Banning','CA',92220);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Rory','Cooper',NULL,'[email protected]','459 West Street ','Rocklin','CA',95677);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Hilde','Nieves',NULL,'[email protected]','9437 Fordham Lane ','Campbell','CA',95008);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Marry','Benjamin',NULL,'[email protected]','33 Amerige Street
','Forney','TX',75126);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Vernell','Goff',NULL,'[email protected]','77 Cobblestone St. ','Monroe','NY',10950);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Erlene','Cook',NULL,'[email protected]','89 Blue Spring Street ','Mount
Vernon','NY',10550);
INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Carroll','Kelly',NULL,'[email protected]','346 Grant Circle ','Monroe','NY',10950);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Basilia','Thornton','(631) 592-9548','[email protected]','9033 Pine Dr.
','Brentwood','NY',11717);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Tricia','Daniels',NULL,'[email protected]','8628 Crescent Court ','Forney','TX',75126);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Kandace','Hughes',NULL,'[email protected]','482 Ryan Ave. ','San
Lorenzo','CA',94580);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Alejandro','Norman',NULL,'[email protected]','8918 Marsh Lane
','Upland','CA',91784);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Rodney','Odom',NULL,'[email protected]','7782 North Deerfield Lane ','Richmond
Hill','NY',11418);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Bettie','Pierce',NULL,'[email protected]','787 North Vernon Lane
','Farmingdale','NY',11735);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Dagny','Owen',NULL,'[email protected]','8028 Thompson Drive ','San
Angelo','TX',76901);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Cinthia','Poole',NULL,'[email protected]','7 Central Ave. ','Lake Jackson','TX',77566);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Sheila','Travis',NULL,'[email protected]','9285 Front St. ','Longview','TX',75604);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Arcelia','Vinson',NULL,'[email protected]','40 Dogwood St. ','West Islip','NY',11795);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Lucas','Estes',NULL,'[email protected]','99 Old Church St. ','Santa Monica','CA',90403);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Marissa','Summers',NULL,'[email protected]','81 Carpenter St. ','Saint
Albans','NY',11412);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Kaley','Blanchard',NULL,'[email protected]','74 Evergreen Court ','Palos Verdes
Peninsula','CA',90274);
INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Wm','Pope',NULL,'[email protected]','212 Marsh Court ','Auburn','NY',13021);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Rubye','Mccall','(248) 764-3359','[email protected]','71 Sherwood Dr.
','Troy','NY',12180);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Adriene','Rivera',NULL,'[email protected]','973 Yukon Avenue ','Encino','CA',91316);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Laurence','Christian',NULL,'[email protected]','2 Maple St. ','Jamaica','NY',11432);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Shirely','Stanley','(915) 437-6113','[email protected]','73 White Avenue ','El
Paso','TX',79930);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Danille','Mcfarland',NULL,'[email protected]','14 Tailwater St. ','Rocklin','CA',95677);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Salena','Day',NULL,'[email protected]','8067 Park Court ','San Lorenzo','CA',94580);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Matilda','Larson',NULL,'[email protected]','336 Saxon Court
','Harlingen','TX',78552);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Mellisa','Kim','(424) 151-6481','[email protected]','17 Lyme Dr. ','Los Angeles','CA',90008);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Vonda','Berger',NULL,'[email protected]','615 S. Proctor Ave. ','Santa
Clara','CA',95050);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Soledad','Moses',NULL,'[email protected]','85 Hickory Ave. ','Jackson
Heights','NY',11372);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Lashandra','Turner','(562) 327-9469','[email protected]','11 Marlborough Rd.
','Long Beach','NY',11561);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Lynne','Anderson','(915) 789-6666','[email protected]','325 Inverness St. ','El
Paso','TX',79930);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Chasidy','Webster',NULL,'[email protected]','8296 S. Lookout Lane
','Rocklin','CA',95677);
INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Ulysses','Gaines',NULL,'[email protected]','22 Gregory Lane ','Monsey','NY',10952);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Euna','Lopez',NULL,'[email protected]','7979 South Mountainview Ave.
','Carmel','NY',10512);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Cherelle','Key',NULL,'[email protected]','7739 Snake Hill Lane ','Valley
Stream','NY',11580);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Jeffry','Church',NULL,'[email protected]','426 Grandrose Ave. ','Pleasanton','CA',94566);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Cyndi','Dyer',NULL,'[email protected]','313 West Argyle Ave. ','Baldwin','NY',11510);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Danilo','Holmes',NULL,'[email protected]','657 Manor Station Dr.
','Hicksville','NY',11801);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Joni','Lee',NULL,'[email protected]','8573 Proctor Street ','Centereach','NY',11720);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Antony','Atkinson',NULL,'[email protected]','680 East Birchwood Lane
','Smithtown','NY',11787);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Deanne','Parsons',NULL,'[email protected]','76 Amherst Drive
','Lindenhurst','NY',11757);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Frederica','Rojas',NULL,'[email protected]','7835 West Jockey Hollow Rd.
','Ithaca','NY',14850);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Emelda','Dickerson',NULL,'[email protected]','7457 6th St. ','Hamburg','NY',14075);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Rudolf','Moran',NULL,'[email protected]','5 Birchwood Rd. ','Maspeth','NY',11378);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Benito','Hendrix',NULL,'[email protected]','676 S. Bowman Lane
','Depew','NY',14043);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Jonell','Rivas',NULL,'[email protected]','8415 East High Point St. ','Amarillo','TX',79106);
INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Joi','Reeves','(619) 952-9613','[email protected]','9101 Williams Court ','San
Diego','CA',92111);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Leland','Mcdowell',NULL,'[email protected]','8034 E. Washington Lane
','Encino','CA',91316);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Delaine','Estes',NULL,'[email protected]','8916 Hartford Rd. ','Amarillo','TX',79106);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Genevieve','Juarez',NULL,'[email protected]','93 Goldfield Drive ','New Hyde
Park','NY',11040);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Kylee','Dickson',NULL,'[email protected]','7908 Sherwood Street
','Amityville','NY',11701);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Renita','Henry',NULL,'[email protected]','474 Woodland Ave. ','New
Rochelle','NY',10801);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Sarah','Kirkland',NULL,'[email protected]','42 N. Glendale Avenue ','Wappingers
Falls','NY',12590);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Paul','Lester',NULL,'[email protected]','275 Clay St. ','Vista','CA',92083);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Taisha','Vang',NULL,'[email protected]','660 East Foster Lane ','Shirley','NY',11967);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Eliana','Reese',NULL,'[email protected]','7079 NE. Cross Drive
','Woodhaven','NY',11421);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Leonore','Dorsey',NULL,'[email protected]','8213 South Branch Avenue ','Jackson
Heights','NY',11372);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Ashleigh','Frank',NULL,'[email protected]','9008 Plymouth Street
','Levittown','NY',11756);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Gabriel','Wagner',NULL,'[email protected]','7921 Manhattan Ave. ','Ballston
Spa','NY',12020);
INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Margene','Eaton',NULL,'[email protected]','43 Sugar Street ','Wantagh','NY',11793);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Toshia','Cardenas',NULL,'[email protected]','878 Bayberry Street
','Amsterdam','NY',12010);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Jamika','Blanchard',NULL,'[email protected]','420 Cambridge Street ','Fresh
Meadows','NY',11365);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Shery','Acosta',NULL,'[email protected]','17 Canal Ave. ','Saratoga Springs','NY',12866);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Jenna','Saunders',NULL,'[email protected]','4 Young St. ','Yorktown
Heights','NY',10598);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Skye','Pope',NULL,'[email protected]','121 S. Bay Meadows Ave. ','Richmond
Hill','NY',11418);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Ana','Palmer','(657) 323-8684','[email protected]','7 Buckingham St.
','Anaheim','CA',92806);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Eric','Hardin',NULL,'[email protected]','39 S. Parker Drive ','Jamaica','NY',11432);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Basil','Ballard',NULL,'[email protected]','7477 Belmont Ave. ','San Lorenzo','CA',94580);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Gabriel','Pitts',NULL,'[email protected]','8462 Marshall Drive ','Clifton Park','NY',12065);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Cayla','Johnson',NULL,'[email protected]','7091 Rockaway Avenue ','Coram','NY',11727);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Sharika','Colon','(562) 452-6136','[email protected]','509 Henry Smith St. ','Long
Beach','NY',11561);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Donnetta','Henson',NULL,'[email protected]','2 Tallwood Drive
','Webster','NY',14580);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Leigh','Burke',NULL,'[email protected]','7651 Creek St. ','Schenectady','NY',12302);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Deloris','Larson',NULL,'[email protected]','242 Branch Street ','Duarte','CA',91010);
INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Ehtel','Cobb',NULL,'[email protected]','741 Rockville Drive ','Lockport','NY',14094);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Evelina','Byrd','(716) 601-7704','[email protected]','628 S. Church St.
','Buffalo','NY',14215);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Zulema','Browning',NULL,'[email protected]','12 NW. Lafayette St.
','Amsterdam','NY',12010);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Tressa','Weiss',NULL,'[email protected]','52 Wild Rose Avenue ','Ossining','NY',10562);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Yvette','Rogers',NULL,'[email protected]','3 SE. Oklahoma Drive ','Franklin
Square','NY',11010);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Kiara','Deleon','(657) 378-8011','[email protected]','164 Addison Drive
','Anaheim','CA',92806);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Taylor','Cole',NULL,'[email protected]','9408 Holly Lane ','Carmel','NY',10512);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Myrtie','James',NULL,'[email protected]','566 North Livingston Ave.
','Merrick','NY',11566);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Ashton','Lott',NULL,'[email protected]','609 Windfall Lane ','Floral Park','NY',11001);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Kara','Higgins',NULL,'[email protected]','758 Jennings Street ','Ossining','NY',10562);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Tomeka','Higgins',NULL,'[email protected]','591 W. Corona St.
','Poughkeepsie','NY',12601);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Ronald','Parsons',NULL,'[email protected]','268 Pin Oak Rd. ','Maspeth','NY',11378);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Allison','Nolan','(845) 276-5729','[email protected]','7421 Victoria St. ','New
City','NY',10956);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Derrick','Marks',NULL,'[email protected]','7247 East Prairie Lane
','Glendora','CA',91740);
INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Yang','Roth',NULL,'[email protected]','234 E. Shub Farm Ave. ','Webster','NY',14580);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Melba','Wilkinson',NULL,'[email protected]','255 Harvard Dr. ','Floral
Park','NY',11001);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Valentin','Mclaughlin',NULL,'[email protected]','56 Squaw Creek Street
','Lindenhurst','NY',11757);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Lewis','Garner','(631) 871-2512','[email protected]','9550 East Greenrose St.
','Brentwood','NY',11717);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Ann','Heath',NULL,'[email protected]','413 East St. ','South El Monte','CA',91733);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Janelle','Maldonado',NULL,'[email protected]','34 Mammoth Street ','Richmond
Hill','NY',11418);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Catrice','Hicks',NULL,'[email protected]','403 Inverness Street ','San Pablo','CA',94806);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Eli','Contreras',NULL,'[email protected]','35 Highland Ave.
','Ronkonkoma','NY',11779);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Rita','Bailey',NULL,'[email protected]','69 Glenwood Street ','Ossining','NY',10562);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Laure','Pena',NULL,'[email protected]','9849 West Elmwood St. ','Wappingers
Falls','NY',12590);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Tilda','Melton','(248) 767-4165','[email protected]','237 Elmwood Drive
','Troy','NY',12180);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Florencio','Davenport',NULL,'[email protected]','8759 Brookside Ave.
','Jamestown','NY',14701);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Eun','Harris','(619) 378-2432','[email protected]','623 Jones St. ','San Diego','CA',92111);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Marylyn','Browning',NULL,'[email protected]','915 Lakeshore Street
','Scarsdale','NY',10583);
INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Romana','Barnes',NULL,'[email protected]','9776 Shipley Rd. ','Floral
Park','NY',11001);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Sam','Lester',NULL,'[email protected]','563 South Beacon Lane ','Baldwin','NY',11510);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Nicki','Larson',NULL,'[email protected]','8317 West Leatherwood Dr.
','Monsey','NY',10952);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Antonetta','Rocha',NULL,'[email protected]','9858 Newcastle St. ','Port
Chester','NY',10573);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Shara','Pope',NULL,'[email protected]','194 Amherst Dr. ','Ridgecrest','CA',93555);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Trena','Hudson',NULL,'[email protected]','135 Grand Ave. ','Monroe','NY',10950);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Loraine','Sykes',NULL,'[email protected]','9239 Windsor Ave. ','Scarsdale','NY',10583);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Alissa','Hood',NULL,'[email protected]','8032 Maple Drive ','New Windsor','NY',12553);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Augustus','Schmidt',NULL,'[email protected]','624 Jones Dr. ','Corona','NY',11368);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Stacie','Sims','(510) 194-5117','[email protected]','47 Orange Ave.
','Oakland','CA',94603);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Brittni','Green',NULL,'[email protected]','842 El Dorado Lane ','Floral Park','NY',11001);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Etsuko','Garrison',NULL,'[email protected]','1 Arrowhead Street ','Richmond
Hill','NY',11418);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Calandra','Stanton',NULL,'[email protected]','36 Livingston Dr. ','Lake
Jackson','TX',77566);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Willis','Randolph',NULL,'[email protected]','332 Constitution St.
','Harlingen','TX',78552);
INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Shawnda','Glover',NULL,'[email protected]','138 Belmont Ave.
','Liverpool','NY',13090);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Jennette','Baker',NULL,'[email protected]','798 Marvon St. ','Banning','CA',92220);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Elma','Molina',NULL,'[email protected]','8565 Devon Ave. ','New Rochelle','NY',10801);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Adam','Henderson',NULL,'[email protected]','167 James St. ','Los
Banos','CA',93635);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Ira','Moore',NULL,'[email protected]','1 Pineknoll Court ','Saratoga Springs','NY',12866);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Kermit','Bowman','(915) 996-5952','[email protected]','3 Airport Street ','El
Paso','TX',79930);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Gayle','Wilkinson',NULL,'[email protected]','4 Riverside Ave.
','Lindenhurst','NY',11757);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Launa','Hull',NULL,'[email protected]','936 Grove Street ','Helotes','TX',78023);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Myron','Johns',NULL,'[email protected]','5 N. Woodsman Rd. ','Whitestone','NY',11357);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Tuan','Wolfe',NULL,'[email protected]','7641 Oak Meadow Dr. ','West Babylon','NY',11704);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Mathilda','Pennington','(845) 407-9524','[email protected]','14 S. Argyle Ave.
','New City','NY',10956);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Reatha','Perez',NULL,'[email protected]','9917 1st St. ','Holbrook','NY',11741);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Arnita','Thomas',NULL,'[email protected]','154 2nd St. ','Orchard Park','NY',14127);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Amparo','Burks',NULL,'[email protected]','7781 Augusta St. ','Merrick','NY',11566);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Jenny','Bell',NULL,'[email protected]','38 Crescent St. ','Niagara Falls','NY',14304);
INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Laverne','Craft',NULL,'[email protected]','829 N. Pierce Street ','Forest Hills','NY',11375);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Darcel','Harmon',NULL,'[email protected]','966 Hickory Street ','Santa
Clara','CA',95050);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Cecilia','Camacho',NULL,'[email protected]','682 Mountainview Rd.
','Desoto','TX',75115);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Pearlie','Cochran',NULL,'[email protected]','23 Homewood Rd.
','Campbell','CA',95008);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Deirdre','Ryan',NULL,'[email protected]','83 Jefferson Lane ','Utica','NY',13501);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Yevette','Elliott',NULL,'[email protected]','182 Euclid Street ','Jackson
Heights','NY',11372);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Ladawn','Downs','(281) 165-2090','[email protected]','7452 S. Airport Court
','Houston','TX',77016);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Dorothea','Chang',NULL,'[email protected]','75 Oak Ave. ','Astoria','NY',11102);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Merlin','Foreman','(516) 150-1321','[email protected]','8198 North Rockaway St.
','Hempstead','NY',11550);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Lanie','Dunn',NULL,'[email protected]','7583 Pilgrim Ave. ','North
Tonawanda','NY',14120);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Christoper','Gould',NULL,'[email protected]','8718 South Constitution St.
','Shirley','NY',11967);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Norine','Huffman',NULL,'[email protected]','363 Dunbar Drive ','Encino','CA',91316);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Alane','Mccarty','(619) 377-8586','[email protected]','8254 Hilldale Street ','San
Diego','CA',92111);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Charleen','Joyner',NULL,'[email protected]','735 N. John Dr. ','Corona','NY',11368);
INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Zella','Fernandez',NULL,'[email protected]','8 Marshall Dr. ','Rockville
Centre','NY',11570);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Collene','Knox','(361) 760-1523','[email protected]','7 North Branch Lane ','Corpus
Christi','TX',78418);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Alysia','Nicholson','(805) 493-7311','[email protected]','868 Trusel St.
','Oxnard','CA',93035);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Sharie','Whitaker',NULL,'[email protected]','7 Bayport Lane ','Merrick','NY',11566);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Diana','Cobb',NULL,'[email protected]','558 Vale St. ','Fullerton','CA',92831);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Morton','Barron','(661) 386-4884','[email protected]','542 Circle Rd.
','Bakersfield','CA',93306);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Camille','Harvey',NULL,'[email protected]','859 Beaver Ridge Ave.
','Huntington','NY',11743);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Lolita','O''neill',NULL,'lolita.o''[email protected]','36 Prairie Dr. ','Massapequa Park','NY',11762);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Terese','Briggs',NULL,'[email protected]','16 N. Oak Valley St. ','Woodside','NY',11377);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Majorie','Glover',NULL,'[email protected]','4 Garden Ave. ','Apple Valley','CA',92307);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Vinnie','Chan',NULL,'[email protected]','8750 Surrey St. ','Forest Hills','NY',11375);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Ezra','Silva',NULL,'[email protected]','8629 Catherine Rd. ','New Windsor','NY',12553);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Jovita','Bishop',NULL,'[email protected]','8123 Wild Horse St. ','Staten Island','NY',10301);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Kecia','Olsen',NULL,'[email protected]','8389 Central St. ','Santa Cruz','CA',95060);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Ilona','Spears',NULL,'[email protected]','984 Canterbury Lane ','Port Jefferson
Station','NY',11776);
INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Senaida','Thompson',NULL,'[email protected]','578 Golf Drive ','Bronx','NY',10451);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Larae','Carney',NULL,'[email protected]','9322 Glen Ridge Dr. ','Sunnyside','NY',11104);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Sebrina','Hart',NULL,'[email protected]','7679 Pacific St. ','Coram','NY',11727);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Kristofer','Craig',NULL,'[email protected]','6 Delaware Lane ','Plainview','NY',11803);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Luciana','Mcgee',NULL,'[email protected]','8002 Cross St. ','Selden','NY',11784);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Nicki','Fry',NULL,'[email protected]','950 Snake Hill Lane ','Endicott','NY',13760);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Devin','Shaffer','(507) 557-2191','[email protected]','382 Third Ave.
','Rochester','NY',14606);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Erlinda','Osborne',NULL,'[email protected]','148 Elm St. ','West Islip','NY',11795);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Camila','Carroll','(210) 436-8676','[email protected]','72 Shub Farm Avenue ','San
Antonio','TX',78213);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Vicki','Wiggins',NULL,'[email protected]','71 Broad Ave. ','Wappingers
Falls','NY',12590);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Lois','Steele',NULL,'[email protected]','7501 South Marlborough Street
','Ossining','NY',10562);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Carola','Mcpherson',NULL,'[email protected]','578 Shirley Dr. ','Rego
Park','NY',11374);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Rochell','Cantrell',NULL,'[email protected]','437 Water Dr. ','Port Jefferson
Station','NY',11776);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Kasha','Sullivan',NULL,'[email protected]','48 Foster Rd. ','Scarsdale','NY',10583);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Viva','Dawson',NULL,'[email protected]','446 Princess Ave. ','Orchard Park','NY',14127);
INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Hue','Dalton',NULL,'[email protected]','7940 Oakwood Street ','Apple
Valley','CA',92307);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Andria','Rivers',NULL,'[email protected]','183 Ohio Ave. ','Amarillo','TX',79106);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Hilary','Savage','(805) 753-6881','[email protected]','696 Howard Court
','Oxnard','CA',93035);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Lavona','Austin',NULL,'[email protected]','926 South Euclid St. ','Utica','NY',13501);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Doreatha','Ford',NULL,'[email protected]','9413 Ryan Ave. ','Huntington','NY',11743);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Alina','Mcleod',NULL,'[email protected]','20 Winchester Street ','Patchogue','NY',11772);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Aide','Franco',NULL,'[email protected]','8017 Lake Forest St. ','Atwater','CA',95301);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Genny','Hensley',NULL,'[email protected]','8849 Marconi Ave. ','Redondo
Beach','CA',90278);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Melita','Dominguez',NULL,'[email protected]','9903 Santa Clara Lane
','Auburn','NY',13021);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Fannie','Jenkins','(805) 774-5696','[email protected]','7858 E. Pawnee Dr.
','Oxnard','CA',93035);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Bobbi','Banks',NULL,'[email protected]','396 Wagon Rd. ','Bayside','NY',11361);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Gwenn','Melton',NULL,'[email protected]','9545 Wakehurst Drive
','Centereach','NY',11720);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Laci','Castro',NULL,'[email protected]','130 Birchpond Street ','Saint Albans','NY',11412);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Evelina','Manning',NULL,'[email protected]','7515 Spring St. ','Mount
Vernon','NY',10550);
INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Tania','Swanson',NULL,'[email protected]','8646 Glen Eagles Ave.
','Longview','TX',75604);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Laurel','Schultz',NULL,'[email protected]','812 E. 1st Lane ','Mount
Vernon','NY',10550);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Carolyne','Conley',NULL,'[email protected]','431 Lees Creek Drive ','Floral
Park','NY',11001);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Eldridge','Greer',NULL,'[email protected]','131 E. Madison St. ','Central Islip','NY',11722);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Margret','Barnett',NULL,'[email protected]','7509 Depot Rd. ','Forney','TX',75126);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Oliva','Blackwell',NULL,'[email protected]','54 Ramblewood St.
','Elmhurst','NY',11373);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Oralia','Farley',NULL,'[email protected]','747B E. Coffee Street ','Upland','CA',91784);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Romaine','Salazar',NULL,'[email protected]','7700 Wentworth Rd.
','Monsey','NY',10952);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Hermila','Mckay',NULL,'[email protected]','23 Garfield Dr. ','Coachella','CA',92236);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Lloyd','Miranda',NULL,'[email protected]','9098 Jennings St. ','Encino','CA',91316);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Mandi','Gibbs',NULL,'[email protected]','80 Sycamore Drive ','East
Elmhurst','NY',11369);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Hue','May',NULL,'[email protected]','19 S. Lawrence Dr. ','Valley Stream','NY',11580);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Tomika','Wilder',NULL,'[email protected]','142 South Ocean St. ','New Hyde
Park','NY',11040);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Graig','Roth',NULL,'[email protected]','7516 Wrangler Street ','West Babylon','NY',11704);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Lamar','Greer',NULL,'[email protected]','7909 Golden Star Ave. ','Levittown','NY',11756);
INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Raymonde','Garcia',NULL,'[email protected]','55 NE. North St.
','Queensbury','NY',12804);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Cira','Downs','(510) 788-4456','[email protected]','672 Sussex Ave.
','Oakland','CA',94603);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Marisa','Chambers',NULL,'[email protected]','15 E. Rock Creek Ave.
','Amityville','NY',11701);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Rod','Hatfield',NULL,'[email protected]','7090 Bridge Dr. ','Ronkonkoma','NY',11779);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Quyen','Houston',NULL,'[email protected]','7758 Homewood Dr. ','Central
Islip','NY',11722);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Han','Schneider',NULL,'[email protected]','40 Holly Street ','Elmhurst','NY',11373);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Terrell','Mathis',NULL,'[email protected]','9320 Center Ave. ','Selden','NY',11784);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Spring','Hayes',NULL,'[email protected]','8591 Wentworth St. ','Ossining','NY',10562);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Lecia','Hancock',NULL,'[email protected]','9167 Pineknoll St.
','Schenectady','NY',12302);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Twana','Arnold','(657) 988-1904','[email protected]','47 North Fairground Lane
','Anaheim','CA',92806);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Yvone','Yates',NULL,'[email protected]','9269 Blue Spring Ave. ','San Pablo','CA',94806);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Agatha','Melton',NULL,'[email protected]','89 East Illinois Street ','Springfield
Gardens','NY',11413);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Lavonda','Stephenson',NULL,'[email protected]','37 Birchwood Dr. ','Bay
Shore','NY',11706);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Agnes','Sims','(716) 780-9901','[email protected]','170 Queen Lane ','Buffalo','NY',14215);
INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Latricia','Lindsey',NULL,'[email protected]','288 Campfire Dr. ','Yorktown
Heights','NY',10598);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Yolando','Wade',NULL,'[email protected]','310 Wilson Ave.
','Massapequa','NY',11758);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Nenita','Mooney',NULL,'[email protected]','10 W. Bishop Street
','Lawndale','CA',90260);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Kermit','Hyde',NULL,'[email protected]','87 SE. Carson St. ','Patchogue','NY',11772);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Angelique','Merrill',NULL,'[email protected]','8490 West High Noon Ave. ','South El
Monte','CA',91733);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Ilda','Roberson',NULL,'[email protected]','8853 Lake St. ','Kingston','NY',12401);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Corrinne','Garrison',NULL,'[email protected]','81 East Glenwood Ave.
','Victoria','TX',77904);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Major','Merrill',NULL,'[email protected]','78 Thatcher Court ','Astoria','NY',11102);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Ouida','Gregory',NULL,'[email protected]','7984 8th Street ','Merrick','NY',11566);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Tajuana','Riddle',NULL,'[email protected]','24 St Margarets Ave.
','Bayside','NY',11361);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Ricki','Bullock',NULL,'[email protected]','79 Pennington Rd. ','Woodside','NY',11377);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Celestine','Kent','(717) 890-4260','[email protected]','697 Fordham Street
','Lancaster','NY',14086);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Debbra','Jacobson',NULL,'[email protected]','8316 West Bedford Ave. ','Ballston
Spa','NY',12020);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Kandis','Mills',NULL,'[email protected]','64 Beechwood Drive ','Hamburg','NY',14075);
INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Wallace','Lane',NULL,'[email protected]','901 Liberty St. ','South Richmond
Hill','NY',11419);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Malisa','Mitchell',NULL,'[email protected]','87 Ridgewood Court ','Mount
Vernon','NY',10550);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Lilliam','Nolan',NULL,'[email protected]','8976 Berkshire Court ','Copperas
Cove','TX',76522);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Tad','Gardner',NULL,'[email protected]','9745 E. Wilson St. ','Niagara Falls','NY',14304);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Petronila','Gallegos',NULL,'[email protected]','8053 Aspen St. ','Howard
Beach','NY',11414);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Yun','Nelson',NULL,'[email protected]','529 Durham Street ','Ballston Spa','NY',12020);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Edgar','Horn',NULL,'[email protected]','7270 W. Cherry Hill Lane ','West
Babylon','NY',11704);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Chantay','Maynard',NULL,'[email protected]','7483 1st Ave.
','Elmhurst','NY',11373);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Donette','Mccarthy',NULL,'[email protected]','500 NW. Maiden Dr. ','Redondo
Beach','CA',90278);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Mariam','Miranda',NULL,'[email protected]','18 East Washington Avenue ','Franklin
Square','NY',11010);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Rosalie','Coffey',NULL,'[email protected]','789 Amerige Dr. ','Upland','CA',91784);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Cathey','Lamb',NULL,'[email protected]','9621 Ryan Drive ','Bayside','NY',11361);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Alyse','Jacobson',NULL,'[email protected]','10 West Devon Lane ','Massapequa
Park','NY',11762);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('India','Barron',NULL,'[email protected]','834 W. Pleasant Rd. ','Huntington','NY',11743);
INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Cris','Dunn',NULL,'[email protected]','1 Pawnee Street ','Pittsford','NY',14534);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Ophelia','Rodgers',NULL,'[email protected]','133 Joy Ridge Drive ','Hopewell
Junction','NY',12533);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Barrett','Sanders',NULL,'[email protected]','32 Hawthorne St. ','Longview','TX',75604);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Bernardina','Cooper',NULL,'[email protected]','223 Glen Creek Ave.
','Whitestone','NY',11357);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Douglas','Richards',NULL,'[email protected]','221 Arcadia Lane ','Valley
Stream','NY',11580);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Phillis','Fowler',NULL,'[email protected]','8976 N. Hall Street ','Clifton Park','NY',12065);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Reyes','Merritt',NULL,'[email protected]','48 Lexington Rd. ','Staten Island','NY',10301);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Nathalie','Knowles',NULL,'[email protected]','4 Cactus Street ','West Islip','NY',11795);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Vallie','Dixon',NULL,'[email protected]','85 E. Ann Drive ','Rowlett','TX',75088);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Elnora','Simpson',NULL,'[email protected]','7157 Shore Ave. ','Bellmore','NY',11710);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Ivelisse','Nixon','(281) 941-4933','[email protected]','782 Boston Ave.
','Houston','TX',77016);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Shanti','Johnston',NULL,'[email protected]','722 Alderwood Drive ','Staten
Island','NY',10301);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Martha','Burgess',NULL,'[email protected]','9631 St Margarets Lane
','Woodhaven','NY',11421);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Neville','Mcclain',NULL,'[email protected]','781 Buttonwood Ave. ','West
Hempstead','NY',11552);
INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Ghislaine','Compton',NULL,'[email protected]','8930 Princess St.
','Lindenhurst','NY',11757);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Leanna','Manning',NULL,'[email protected]','39 E. Stillwater Ave.
','Hicksville','NY',11801);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Marshall','Johnson',NULL,'[email protected]','44 Greenview St.
','Vista','CA',92083);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Zelda','Pratt','(717) 428-4018','[email protected]','74 Trusel Drive
','Lancaster','NY',14086);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Joel','Wynn','(619) 210-6032','[email protected]','7 North Oak Ave. ','San Diego','CA',92111);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Yahaira','Robertson',NULL,'[email protected]','142 Roehampton Dr.
','Endicott','NY',13760);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Sandy','Mills',NULL,'[email protected]','333 Olive Ave. ','Schenectady','NY',12302);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Cassidy','Clark',NULL,'[email protected]','9879 Old Kingston Road
','Astoria','NY',11102);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Kristy','Watkins',NULL,'[email protected]','977 South Brook Ave. ','Howard
Beach','NY',11414);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Tina','Bush',NULL,'[email protected]','8038 Bellevue Street ','Maspeth','NY',11378);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Veronika','Rollins',NULL,'[email protected]','94 Arnold Ave. ','Webster','NY',14580);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Kristel','Byrd',NULL,'[email protected]','9967 Piper Street ','Hicksville','NY',11801);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Shay','Stephenson',NULL,'[email protected]','9569 4th Lane ','Smithtown','NY',11787);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('George','Pickett',NULL,'[email protected]','691 Rocky River St. ','Sunnyside','NY',11104);
INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Renato','Morton',NULL,'[email protected]','8526 Sherwood Street ','Mount
Vernon','NY',10550);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Marcy','Rodriguez',NULL,'[email protected]','97 Trusel Drive ','Lockport','NY',14094);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Edmund','Gaines',NULL,'[email protected]','8643 Gartner St. ','Copperas
Cove','TX',76522);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Lory','Berg',NULL,'[email protected]','64 Vine Drive ','Oswego','NY',13126);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Pamala','Fowler',NULL,'[email protected]','399 Leatherwood St. ','Ballston
Spa','NY',12020);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Leone','Emerson',NULL,'[email protected]','460 Smith Store Ave.
','Whitestone','NY',11357);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Brain','Skinner',NULL,'[email protected]','8676 Ketch Harbour Ave.
','Euless','TX',76039);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Roseanne','Maynard',NULL,'[email protected]','219 Old Paris Hill Dr.
','Euless','TX',76039);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Corinna','Adams',NULL,'[email protected]','38 Trenton Court ','Rosedale','NY',11422);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Kellye','Campbell',NULL,'[email protected]','75 Marsh St. ','Baldwinsville','NY',13027);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Erna','Sloan',NULL,'[email protected]','9449 Fifth Avenue ','Howard Beach','NY',11414);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Carolann','Russell',NULL,'[email protected]','9308 Selby Ave. ','Glen
Cove','NY',11542);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Gilbert','Calhoun',NULL,'[email protected]','7339 Summer Drive ','East
Elmhurst','NY',11369);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Manie','Maxwell',NULL,'[email protected]','85 Brickell Ave.
','Ronkonkoma','NY',11779);
INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Giselle','Robles',NULL,'[email protected]','9747 N. El Dorado Dr. ','San
Angelo','TX',76901);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Tessie','Farmer',NULL,'[email protected]','870 Cottage Ave. ','Plattsburgh','NY',12901);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Felica','Munoz',NULL,'[email protected]','24 West Rockwell Dr. ','South Ozone
Park','NY',11420);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Kathyrn','Bush',NULL,'[email protected]','90 Devon St. ','Bronx','NY',10451);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Sylvester','Chan',NULL,'[email protected]','659 Arcadia Street ','Rocklin','CA',95677);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Lizette','Ellison',NULL,'[email protected]','865 Sunbeam Street ','Port
Washington','NY',11050);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Ernestina','Skinner',NULL,'[email protected]','52 Spring Drive
','Elmhurst','NY',11373);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Phyllis','Hill',NULL,'[email protected]','576 Devon Ave. ','Syosset','NY',11791);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Stephanie','Browning',NULL,'[email protected]','9156 Lantern St.
','Rowlett','TX',75088);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Arlena','Buckner',NULL,'[email protected]','629 Locust Ave. ','New Hyde
Park','NY',11040);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Lezlie','Thompson',NULL,'[email protected]','73 Vernon St. ','Freeport','NY',11520);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Brittney','Rojas',NULL,'[email protected]','2 E. Overlook Ave. ','Kingston','NY',12401);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Phylis','Adkins','(212) 325-9145','[email protected]','7781 James Ave. ','New
York','NY',10002);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Lean','Stark',NULL,'[email protected]','215 Old Pumpkin Hill St. ','Upland','CA',91784);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Lara','Guy',NULL,'[email protected]','9809 E. Walnut Drive ','Ronkonkoma','NY',11779);
INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Inga','Koch',NULL,'[email protected]','8445 South New Court ','New Windsor','NY',12553);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Klara','Kim',NULL,'[email protected]','9660 Sherman Lane ','Rome','NY',13440);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Julianne','Shannon',NULL,'[email protected]','28 Applegate Street ','Sugar
Land','TX',77478);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Loni','Mullen',NULL,'[email protected]','55 Thompson Avenue ','South Ozone
Park','NY',11420);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Olympia','Figueroa',NULL,'[email protected]','587 Surrey St. ','Hopewell
Junction','NY',12533);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Mellie','Puckett',NULL,'[email protected]','64 Van Dyke St. ','Fresh
Meadows','NY',11365);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Shonta','Preston',NULL,'[email protected]','74 Division St. ','Utica','NY',13501);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Lore','Sykes','(716) 382-5169','[email protected]','7050 Beach Drive ','Buffalo','NY',14215);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Julia','Joyner',NULL,'[email protected]','2 Valley View Dr. ','Astoria','NY',11102);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Lynwood','Jackson',NULL,'[email protected]','9449 Linda Street
','Longview','TX',75604);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Rosalva','Hamilton',NULL,'[email protected]','9883 Cedar Dr. ','Campbell','CA',95008);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Domingo','Casey','(408) 761-9212','[email protected]','8665 Cypress Street ','San
Jose','CA',95127);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Rodrigo','Durham',NULL,'[email protected]','82 Old Church Road ','Richmond
Hill','NY',11418);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Dwain','Carlson',NULL,'[email protected]','951 North Trusel Ave.
','Smithtown','NY',11787);
INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Erlinda','Humphrey',NULL,'[email protected]','532 South Victoria St. ','New
Windsor','NY',12553);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Silas','Tate','(361) 219-2149','[email protected]','9754 53rd Court ','Corpus
Christi','TX',78418);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Patience','Clayton',NULL,'[email protected]','68 Chestnut Dr. ','Niagara
Falls','NY',14304);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Mila','Good',NULL,'[email protected]','812 East Longbranch Ave.
','Plattsburgh','NY',12901);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Tanesha','Sawyer',NULL,'[email protected]','9B Kingston Lane ','Rosedale','NY',11422);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Onita','Macdonald',NULL,'[email protected]','94 Wood St. ','Glen
Cove','NY',11542);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Janine','Manning',NULL,'[email protected]','9118B Campfire St. ','Howard
Beach','NY',11414);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Melodie','Melton',NULL,'[email protected]','12 S. 8th Road
','Smithtown','NY',11787);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Ethelyn','Ray',NULL,'[email protected]','80 South Sutor Lane ','Garden City','NY',11530);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Phebe','Turner',NULL,'[email protected]','4 West York Street ','Sunnyside','NY',11104);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Chloe','Patel',NULL,'[email protected]','407 Homewood Street ','Santa
Monica','CA',90403);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Hilda','Harvey',NULL,'[email protected]','9808 W. Cleveland Ave. ','Ballston
Spa','NY',12020);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Gilberte','Duke','(915) 903-7860','[email protected]','12 Birchwood Dr. ','El
Paso','TX',79930);
INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Willian','Hardin',NULL,'[email protected]','836 West Street ','Oswego','NY',13126);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Janna','Hayden',NULL,'[email protected]','32 Hilldale Street ','Longview','TX',75604);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Letisha','May',NULL,'[email protected]','9965 Princeton Lane ','North
Tonawanda','NY',14120);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Graig','Cannon',NULL,'[email protected]','36 Oklahoma Ave. ','Syosset','NY',11791);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Coleen','Navarro',NULL,'[email protected]','990 Broad Rd. ','Webster','NY',14580);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Lucilla','Williams',NULL,'[email protected]','42 Cedar Street ','San
Carlos','CA',94070);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Rosanne','George',NULL,'[email protected]','38 Pleasant St. ','Ossining','NY',10562);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Ashlie','Parrish',NULL,'[email protected]','48 Mill Drive ','Monsey','NY',10952);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Alissa','Craft',NULL,'[email protected]','249 Maple Street ','Ossining','NY',10562);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Letty','Cobb',NULL,'[email protected]','8652 Wellington Street ','Depew','NY',14043);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Nathaniel','Richard',NULL,'[email protected]','3 Nicolls Lane ','New
Windsor','NY',12553);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Elaina','Key',NULL,'[email protected]','1 Main St. ','Plainview','NY',11803);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Stefani','Gamble','(845) 724-2996','[email protected]','9119 W. Victoria St. ','New
City','NY',10956);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Bettyann','Acosta','(717) 746-6658','[email protected]','7949 Chapel St.
','Lancaster','NY',14086);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Crysta','Velez','(281) 529-3469','[email protected]','64 South Front Street
','Houston','TX',77016);
INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Carisa','Carpenter',NULL,'[email protected]','551 Belmont Lane
','Victoria','TX',77904);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Jule','Davenport',NULL,'[email protected]','19 River St. ','San Carlos','CA',94070);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Lonna','Franks',NULL,'[email protected]','667 Brickyard Street ','Ontario','CA',91762);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Elease','Dejesus',NULL,'[email protected]','7800 Magnolia Street
','Oswego','NY',13126);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Maira','Long',NULL,'[email protected]','7587 Bear Hill Street ','Hicksville','NY',11801);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Jana','Thomas','(408) 624-8137','[email protected]','283 E. Spring Dr. ','San
Jose','CA',95127);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Hae','Ramirez',NULL,'[email protected]','9367 Lake Street ','Baldwinsville','NY',13027);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Erik','Leblanc',NULL,'[email protected]','7 East Nut Swamp Street ','Sugar Land','TX',77478);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Daina','Sampson',NULL,'[email protected]','556 Wellington St. ','Longview','TX',75604);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Delmar','Wise',NULL,'[email protected]','8355 Kingston Avenue ','Lockport','NY',14094);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Alita','Salinas',NULL,'[email protected]','8550 Bear Hill Ave. ','Uniondale','NY',11553);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Elenore','William',NULL,'[email protected]','23 Rockland St. ','Mcallen','TX',78501);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Nikita','Roy',NULL,'[email protected]','9703 N. Snake Hill St. ','Pittsford','NY',14534);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Inocencia','Key',NULL,'[email protected]','36 Wild Rose Ave. ','Massapequa
Park','NY',11762);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Liliana','Kerr',NULL,'[email protected]','3 Cherry Drive ','Desoto','TX',75115);
INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Hortencia','O''neil',NULL,'hortencia.o''[email protected]','1 Gulf Rd. ','Rockville
Centre','NY',11570);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Beryl','Bennett','(916) 422-6956','[email protected]','9563 Edgemont St.
','Sacramento','CA',95820);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Alishia','Elliott',NULL,'[email protected]','8905 Courtland Ave. ','Mount
Vernon','NY',10550);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Vernia','Madden','(248) 206-3697','[email protected]','5 Iroquois Street
','Troy','NY',12180);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Kristel','Bullock',NULL,'[email protected]','7292 Armstrong Drive
','Smithtown','NY',11787);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Ruthanne','Hoover',NULL,'[email protected]','835 Paris Hill Road
','Torrance','CA',90505);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('James','Robles',NULL,'[email protected]','9 Chapel Lane ','North Tonawanda','NY',14120);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Evelin','Vargas',NULL,'[email protected]','7049 Pin Oak Ave. ','Webster','NY',14580);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Elvia','Cardenas',NULL,'[email protected]','8 Paris Hill St.
','Massapequa','NY',11758);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Randee','Pitts',NULL,'[email protected]','7371B Essex Street ','Canyon
Country','CA',91387);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Lea','Irwin',NULL,'[email protected]','845 Adams Lane ','New Windsor','NY',12553);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Bryce','Monroe',NULL,'[email protected]','52 Cooper Lane ','Kingston','NY',12401);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Katina','Mcintosh','(661) 464-1523','[email protected]','263 Swanson Dr.
','Bakersfield','CA',93306);
INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Guillermo','Hart','(212) 652-7198','[email protected]','81 Indian Summer Drive
','New York','NY',10002);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Joann','Barber',NULL,'[email protected]','8945 Courtland Street ','Santa
Monica','CA',90403);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Thurman','Ellis',NULL,'[email protected]','20 Augusta Road ','Pleasanton','CA',94566);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Delana','Wagner',NULL,'[email protected]','8499 Mill Pond Road ','Clifton
Park','NY',12065);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Porter','Bass',NULL,'[email protected]','370 North Alderwood Dr. ','San
Angelo','TX',76901);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Yvonne','Bean',NULL,'[email protected]','20 W. Marsh Ave. ','Wappingers
Falls','NY',12590);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Lurline','Rivers',NULL,'[email protected]','69 Pine Street ','Howard Beach','NY',11414);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Ocie','Slater',NULL,'[email protected]','7799 W. Bohemia Dr. ','Hamburg','NY',14075);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Genevie','Miles',NULL,'[email protected]','45 West Sulphur Springs Ave.
','Monroe','NY',10950);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Sherilyn','Wilcox',NULL,'[email protected]','905 North Buckingham Lane
','Ossining','NY',10562);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Aida','Koch',NULL,'[email protected]','9778 3rd Drive ','West Hempstead','NY',11552);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Emory','O''connor','(507) 606-2192','emory.o''[email protected]','34 Foxrun Street
','Rochester','NY',14606);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Maximina','Hutchinson','(361) 164-3098','[email protected]','53 Stillwater
Avenue ','Corpus Christi','TX',78418);
INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Marina','Hinton',NULL,'[email protected]','7440 North Oxford St.
','Encino','CA',91316);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Danyell','Dickerson',NULL,'[email protected]','8306 Fieldstone Dr. ','Central
Islip','NY',11722);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Davis','Long','(717) 653-1755','[email protected]','929 Elmwood Dr.
','Lancaster','NY',14086);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Lynn','Mcmahon',NULL,'[email protected]','9 Surrey St. ','Scarsdale','NY',10583);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Tonja','Henderson',NULL,'[email protected]','82 Alton St. ','Scarsdale','NY',10583);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Krissy','Ochoa',NULL,'[email protected]','80 Queen Ave. ','Port Washington','NY',11050);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Angella','Bridges',NULL,'[email protected]','8708 Sycamore St.
','Pittsford','NY',14534);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Angele','Castro',NULL,'[email protected]','15 Acacia Drive ','Palos Verdes
Peninsula','CA',90274);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Siobhan','Lang',NULL,'[email protected]','3 Monroe Lane ','Levittown','NY',11756);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Venessa','Frost',NULL,'[email protected]','621 West School Rd. ','Scarsdale','NY',10583);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Verna','Solis','(507) 115-1633','[email protected]','7 Lincoln Lane
','Rochester','NY',14606);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Steve','Bender',NULL,'[email protected]','908 N. Pennington Dr.
','Scarsdale','NY',10583);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Aileen','Marquez',NULL,'[email protected]','8899 Newbridge Street
','Torrance','CA',90505);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Kattie','Stevenson',NULL,'[email protected]','52 Carson Street ','Helotes','TX',78023);
INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Hassan','Nash',NULL,'[email protected]','8105 University Lane ','Hicksville','NY',11801);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Delfina','Gilliam',NULL,'[email protected]','9463 Bayberry Rd. ','West
Babylon','NY',11704);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Venus','Hewitt',NULL,'[email protected]','9835 Old Cemetery Lane
','Farmingdale','NY',11735);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Stephen','Vega','(657) 288-3778','[email protected]','5 Briarwood St.
','Anaheim','CA',92806);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Ciera','Koch',NULL,'[email protected]','881 Lawrence Drive ','Euless','TX',76039);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Christel','Barber','(916) 679-3547','[email protected]','320 Briarwood Lane
','Sacramento','CA',95820);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Arline','Lawson','(516) 792-3395','[email protected]','48 Whitemarsh Lane
','Hempstead','NY',11550);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Iva','Wilcox',NULL,'[email protected]','452 South Mayflower Drive ','Kingston','NY',12401);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Maple','Griffin',NULL,'[email protected]','20 Glendale Drive ','Copperas
Cove','TX',76522);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Anisha','Lang',NULL,'[email protected]','265 Peachtree St. ','Rome','NY',13440);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Brent','Calderon','(361) 981-8725','[email protected]','3 Thomas St. ','Corpus
Christi','TX',78418);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Margit','Osborn',NULL,'[email protected]','909 Gulf Drive ','Plainview','NY',11803);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Novella','Patel',NULL,'[email protected]','500 Livingston Street ','Glen
Cove','NY',11542);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Laurette','Hebert',NULL,'[email protected]','18 South Constitution Court
','Canandaigua','NY',14424);
INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Jonna','Brown',NULL,'[email protected]','1 Spring Drive ','Mahopac','NY',10541);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Jennell','Solis','(507) 421-7354','[email protected]','194 2nd Rd.
','Rochester','NY',14606);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Ruth','Horton',NULL,'[email protected]','488 Mulberry Ave. ','Hollis','NY',11423);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Samual','Warner','(631) 151-4988','[email protected]','8735 Thatcher Dr.
','Brentwood','NY',11717);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Damian','Mills','(562) 924-3079','[email protected]','7747 Elm Dr. ','Long
Beach','NY',11561);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Margaretta','Clayton',NULL,'[email protected]','524 San Pablo Ave.
','Ridgecrest','CA',93555);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Marcell','Barrett',NULL,'[email protected]','266 Elm Drive ','Astoria','NY',11102);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Annis','Sanchez','(424) 352-6275','[email protected]','4 Edgewater Road ','Los
Angeles','CA',90008);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Ayanna','Cherry',NULL,'[email protected]','8829 Galvin Rd. ','Smithtown','NY',11787);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Barton','Cox',NULL,'[email protected]','8220 Creekside Street ','Amityville','NY',11701);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Diana','Reyes',NULL,'[email protected]','7415 Annadale St. ','Bronx','NY',10451);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Ingeborg','Ellison',NULL,'[email protected]','360 Trusel St. ','Ithaca','NY',14850);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Carter','Booth',NULL,'[email protected]','82 Beech Drive ','Port Chester','NY',10573);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Christel','Cardenas','(562) 342-8083','[email protected]','428 S. Swanson Drive ','Long
Beach','NY',11561);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Orval','Hunter',NULL,'[email protected]','35 Wagon Drive ','San Angelo','TX',76901);
INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Marguerite','Berger',NULL,'[email protected]','875 Arch Lane
','Fullerton','CA',92831);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Ivette','Warren',NULL,'[email protected]','8408 Thomas Street ','Franklin
Square','NY',11010);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Milagros','Weber',NULL,'[email protected]','7591 Glendale Ave.
','Harlingen','TX',78552);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Marcel','Lindsay',NULL,'[email protected]','249 Peninsula St. ','Ossining','NY',10562);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Louis','Powell',NULL,'[email protected]','368 Sugar Rd. ','Staten Island','NY',10301);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Vanda','Holmes',NULL,'[email protected]','9835 Wild Rose Drive ','Syosset','NY',11791);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Loreen','Byers',NULL,'[email protected]','83 S. Rockledge Circle ','South Ozone
Park','NY',11420);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Casimira','Chapman',NULL,'[email protected]','67 Snake Hill St.
','Monroe','NY',10950);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Brigida','Larson',NULL,'[email protected]','8789 Sycamore Lane ','Canyon
Country','CA',91387);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Chere','Alston',NULL,'[email protected]','16 Lower River Street
','Patchogue','NY',11772);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Giovanna','Jefferson',NULL,'[email protected]','9394 Riverside St.
','Ridgecrest','CA',93555);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Demarcus','Reese',NULL,'[email protected]','8087 Armstrong Dr. ','Yorktown
Heights','NY',10598);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Amina','Salazar',NULL,'[email protected]','944 Wellington Street
','Canandaigua','NY',14424);
INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Serafina','Clemons',NULL,'[email protected]','851 Brown Ave. ','Shirley','NY',11967);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Trinidad','Mcclain',NULL,'[email protected]','98 Tunnel Drive ','Baldwin','NY',11510);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Heather','Chaney',NULL,'[email protected]','4 Morris Dr. ','Jamestown','NY',14701);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Latoya','Johns',NULL,'[email protected]','7914 W. Woodsman St. ','Ballston
Spa','NY',12020);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Shiloh','Reeves',NULL,'[email protected]','818 Kirkland Lane ','West
Babylon','NY',11704);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Lee','Roman','(631) 913-6967','[email protected]','4 Canal Ave. ','Brentwood','NY',11717);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Cami','Williamson',NULL,'[email protected]','9511A Windsor Drive
','Massapequa','NY',11758);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Sharell','Ross',NULL,'[email protected]','7830 Devonshire Ave. ','Vista','CA',92083);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Jerald','Blackwell',NULL,'[email protected]','8364 South Wakehurst Ave. ','East
Elmhurst','NY',11369);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Ruthanne','Franco',NULL,'[email protected]','61 Applegate St.
','Astoria','NY',11102);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Marjory','Leonard',NULL,'[email protected]','800 Greystone Lane ','Apple
Valley','CA',92307);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Jimmy','Russell',NULL,'[email protected]','33 Iroquois Ave. ','Howard
Beach','NY',11414);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Berneice','Pollard',NULL,'[email protected]','607 Bohemia Street
','Forney','TX',75126);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Deangelo','Cooley',NULL,'[email protected]','3 NE. Edgewood Rd.
','Rosedale','NY',11422);
INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Katia','Henry',NULL,'[email protected]','69 E. Columbia Ave. ','Bethpage','NY',11714);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Sebrina','Gross',NULL,'[email protected]','993 Glendale Drive ','Garland','TX',75043);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Josephine','Dale',NULL,'[email protected]','8214 West Drive ','Baldwinsville','NY',13027);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Alma','Peck',NULL,'[email protected]','298 South Bay Meadows Drive ','Corona','NY',11368);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Ling','Newman',NULL,'[email protected]','832 Spring Road ','South Richmond
Hill','NY',11419);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Nichelle','Rosario',NULL,'[email protected]','709 Dunbar Ave. ','Garden
City','NY',11530);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Shenna','Benton','(212) 578-2912','[email protected]','57 Shadow Brook Road ','New
York','NY',10002);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Philip','Bryan','(510) 533-4262','[email protected]','914 Devonshire Court
','Oakland','CA',94603);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Carita','Salinas',NULL,'[email protected]','90 Griffin Street ','Maspeth','NY',11378);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Janie','Herrera',NULL,'[email protected]','652 Westport Street ','Elmhurst','NY',11373);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Lorraine','Marks',NULL,'[email protected]','160 North Pearl Street ','San
Carlos','CA',94070);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Nicolas','Carlson',NULL,'[email protected]','7899 Spruce Street ','Saint
Albans','NY',11412);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Hye','Mercer',NULL,'[email protected]','9681 Redwood St. ','Mahopac','NY',10541);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Adena','Blake',NULL,'[email protected]','684 Westport Drive ','Ballston
Spa','NY',12020);
INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Coleman','Boyd','(915) 607-6336','[email protected]','9740 Bay Meadows Drive ','El
Paso','TX',79930);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Daphine','Willis',NULL,'[email protected]','152 Shady St. ','Farmingdale','NY',11735);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Jenine','Dawson',NULL,'[email protected]','17 Park Street ','Endicott','NY',13760);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Shanita','Wiley',NULL,'[email protected]','121 Bridge Lane ','Saint Albans','NY',11412);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Shanna','Bonner',NULL,'[email protected]','386 Lafayette Road
','Canandaigua','NY',14424);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Ping','Quinn',NULL,'[email protected]','9051 Hanover Dr. ','Rowlett','TX',75088);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Saran','Moses',NULL,'[email protected]','94 Hall Dr. ','Brooklyn','NY',11201);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Tonja','Bean',NULL,'[email protected]','9 Middle River St. ','Fairport','NY',14450);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Vernon','Knowles',NULL,'[email protected]','5 Olive Lane ','Huntington
Station','NY',11746);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Jeannette','Skinner',NULL,'[email protected]','8886 High Point Drive ','Forest
Hills','NY',11375);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Rico','Salas',NULL,'[email protected]','8041 Walt Whitman St. ','Centereach','NY',11720);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Tangela','Hurley',NULL,'[email protected]','49 North Cross St. ','Campbell','CA',95008);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Randee','Lester',NULL,'[email protected]','81 Bear Hill Street ','Centereach','NY',11720);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Ashanti','Hammond',NULL,'[email protected]','9202 W. Lyme Ave.
','Nanuet','NY',10954);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Garry','Juarez',NULL,'[email protected]','670 Nut Swamp Drive ','Forest
Hills','NY',11375);
INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Bee','Baker',NULL,'[email protected]','307 E. Magnolia St. ','Liverpool','NY',13090);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Shantae','Hammond',NULL,'[email protected]','526 Harvard Drive
','Victoria','TX',77904);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Bettye','Espinoza',NULL,'[email protected]','76 Rockwell Street
','Oswego','NY',13126);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Larissa','Hays',NULL,'[email protected]','66 2nd Drive ','Elmont','NY',11003);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Diane','Jones',NULL,'[email protected]','859 Prince St. ','Fresh Meadows','NY',11365);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Zenia','Bruce',NULL,'[email protected]','349 James Road ','Rosedale','NY',11422);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Pasquale','Hogan',NULL,'[email protected]','403 Bank St. ','Vista','CA',92083);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Dane','Mcdaniel',NULL,'[email protected]','891 Court Ave.
','Canandaigua','NY',14424);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Jamaal','Baker',NULL,'[email protected]','186 Big Rock Cove Ave.
','Elmhurst','NY',11373);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Ji','Burt',NULL,'[email protected]','40 S. Roberts Street ','Apple Valley','CA',92307);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Marcelino','Mcbride',NULL,'[email protected]','29 Oxford Ave. ','Clifton
Park','NY',12065);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Rozella','Fitzgerald',NULL,'[email protected]','7795 Myers Ave.
','Shirley','NY',11967);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Tonisha','Fowler',NULL,'[email protected]','9270 Valley View Lane ','Huntington
Station','NY',11746);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Zora','Ford','(916) 192-3196','[email protected]','7416 La Sierra Dr.
','Sacramento','CA',95820);
INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Parthenia','Figueroa',NULL,'[email protected]','550 Theatre Dr.
','Mahopac','NY',10541);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Arielle','Levine',NULL,'[email protected]','7100 High Ridge St. ','Garland','TX',75043);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Hildegarde','Christensen',NULL,'[email protected]','488 East Mill Pond Ave.
','Maspeth','NY',11378);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Rebbecca','Espinoza',NULL,'[email protected]','8266 Valley Farms Road
','Mount Vernon','NY',10550);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Conchita','Boone',NULL,'[email protected]','814 Birchpond Lane ','Mount
Vernon','NY',10550);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Aisha','Woods',NULL,'[email protected]','9292 Bear Hill Ave. ','Webster','NY',14580);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Season','Harvey',NULL,'[email protected]','388 Arnold Court ','East
Northport','NY',11731);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Tommie','Cooley','(717) 634-4113','[email protected]','92 Hickory St.
','Lancaster','NY',14086);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Alanna','Barry',NULL,'[email protected]','33 Laurel Avenue ','Euless','TX',76039);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Jerri','Guthrie',NULL,'[email protected]','95 Sugar Dr. ','Carmel','NY',10512);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Tammy','Austin',NULL,'[email protected]','182 Stillwater Ave. ','Lake
Jackson','TX',77566);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Patsy','Russo',NULL,'[email protected]','8438 Fairway Avenue ','Rowlett','TX',75088);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Desiree','Branch',NULL,'[email protected]','67 Bayport Drive ','San
Lorenzo','CA',94580);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Raeann','Duncan','(657) 256-2008','[email protected]','126 Edgewood St.
','Anaheim','CA',92806);
INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Lillia','Gillespie',NULL,'[email protected]','382 Cardinal Dr. ','Rego Park','NY',11374);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Doris','Kaufman',NULL,'[email protected]','69 Fairground Dr. ','Duarte','CA',91010);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Rodolfo','Buck',NULL,'[email protected]','8359 Brewery Street ','Shirley','NY',11967);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Olimpia','Mays',NULL,'[email protected]','42 Nichols Lane ','Oakland
Gardens','NY',11364);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Shemeka','Lyons',NULL,'[email protected]','97 South Jockey Hollow St.
','Pomona','CA',91768);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Maryalice','Henry',NULL,'[email protected]','85 Prince Street
','Richardson','TX',75080);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Leeanne','Cross',NULL,'[email protected]','424 Newcastle Road ','Bayside','NY',11361);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Lanelle','Guerra',NULL,'[email protected]','989 Wrangler St. ','Floral Park','NY',11001);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Dann','Huff',NULL,'[email protected]','475 S. Rockville St. ','Huntington
Station','NY',11746);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Sherise','Mercer',NULL,'[email protected]','9401 Catherine Dr. ','Vista','CA',92083);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Heather','Perry',NULL,'[email protected]','982 Durham Street ','Sunnyside','NY',11104);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Theresia','Barron',NULL,'[email protected]','951 Wild Rose Street ','Forest
Hills','NY',11375);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Cindi','Ellis',NULL,'[email protected]','6 Cypress Lane ','Floral Park','NY',11001);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Mirella','Duffy',NULL,'[email protected]','43 University Ave. ','Longview','TX',75604);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Carson','Macias',NULL,'[email protected]','7 Pennington St. ','New
Rochelle','NY',10801);
INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Divina','Madden','(562) 264-3998','[email protected]','7314 Armstrong St. ','Long
Beach','NY',11561);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Cher','Alston',NULL,'[email protected]','38 Wild Horse Road ','Wantagh','NY',11793);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Regine','Odom',NULL,'[email protected]','684 N. Mayfield Ave. ','Franklin
Square','NY',11010);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Adam','Thornton',NULL,'[email protected]','755 East Henry Lane ','Central
Islip','NY',11722);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Cori','Schwartz',NULL,'[email protected]','43 Lancaster Lane ','Jamaica','NY',11432);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Willow','Gardner',NULL,'[email protected]','57 S. Lakewood Dr.
','Pleasanton','CA',94566);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Jane','Henderson',NULL,'[email protected]','46 Carson Drive ','Apple
Valley','CA',92307);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Chere','Mcfadden',NULL,'[email protected]','695 San Pablo Drive ','Orchard
Park','NY',14127);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Ira','Erickson',NULL,'[email protected]','6 Lake Forest St. ','Port Jefferson
Station','NY',11776);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Risa','Gallagher',NULL,'[email protected]','8281 Edgefield Drive ','Rocklin','CA',95677);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Lavinia','Cotton',NULL,'[email protected]','7485 Bridle Street ','East
Northport','NY',11731);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Alejandrina','Hodges',NULL,'[email protected]','7598 Shadow Brook St. ','Deer
Park','NY',11729);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Keitha','Black',NULL,'[email protected]','7670 Hilldale Ave. ','Lindenhurst','NY',11757);
INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Corene','Swanson',NULL,'[email protected]','597 Lakeshore Lane ','Rego
Park','NY',11374);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Tonda','Webb',NULL,'[email protected]','53 SW. Edgemont Rd.
','Baldwinsville','NY',13027);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Collen','Dennis',NULL,'[email protected]','284 E. Mill Street ','San Pablo','CA',94806);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Treasa','Dickerson',NULL,'[email protected]','70 W. Creekside Road ','Rockville
Centre','NY',11570);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Jewell','Reyes',NULL,'[email protected]','8711 Glen Creek Drive ','Jackson
Heights','NY',11372);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Penny','Acevedo',NULL,'[email protected]','318 Mulberry Drive ','Ballston
Spa','NY',12020);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Louise','Flowers',NULL,'[email protected]','28 N. Gregory Court ','Depew','NY',14043);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Henrietta','Wagner','(682) 143-2224','[email protected]','54 Brickyard St. ','Fort
Worth','TX',76110);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Ardelia','Cooley',NULL,'[email protected]','59 Henry Smith St. ','Canyon
Country','CA',91387);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Khalilah','Robertson',NULL,'[email protected]','22 Longbranch Rd. ','Spring
Valley','NY',10977);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Armando','Black',NULL,'[email protected]','8611 N. Poor House St.
','Richardson','TX',75080);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Jerri','Henry',NULL,'[email protected]','141 N. Purple Finch Avenue ','Spring
Valley','NY',10977);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Lynda','Newman',NULL,'[email protected]','44 SW. Thomas Ave. ','Saratoga
Springs','NY',12866);
INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Bao','Wade',NULL,'[email protected]','7587 Church St. ','Desoto','TX',75115);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Gussie','Harding',NULL,'[email protected]','41 Edgefield Avenue ','Deer
Park','NY',11729);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Shirely','Cantrell',NULL,'[email protected]','6 Kent Street ','West
Hempstead','NY',11552);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Caroline','Jenkins',NULL,'[email protected]','86 River Lane ','Richardson','TX',75080);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Hollis','Rasmussen',NULL,'[email protected]','8949 S. Gates Road
','Massapequa','NY',11758);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Kendra','Harrington',NULL,'[email protected]','768 Cooper Street
','Jamestown','NY',14701);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Douglass','Blankenship','(229) 891-2087','[email protected]','409 W. Rock
Maple Lane ','Albany','NY',12203);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Lina','Meadows',NULL,'[email protected]','7020 Ashley Rd. ','Glen Cove','NY',11542);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Patria','Harper',NULL,'[email protected]','90 Arlington St. ','Astoria','NY',11102);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Jeffrey','Hill',NULL,'[email protected]','2 Shub Farm St. ','Rosedale','NY',11422);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Ja','Dillard',NULL,'[email protected]','25 Orchard St. ','Canyon Country','CA',91387);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Tora','Dunlap',NULL,'[email protected]','9903 North Halifax Ave.
','Monsey','NY',10952);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Karole','Alvarez',NULL,'[email protected]','69 Woodland St. ','East
Northport','NY',11731);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Shasta','Combs',NULL,'[email protected]','726 James Dr. ','Yorktown
Heights','NY',10598);
INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Cicely','Deleon',NULL,'[email protected]','751 Newbridge Ave. ','Massapequa
Park','NY',11762);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Raphael','O''neil',NULL,'raphael.o''[email protected]','762 East Lantern Dr. ','Fairport','NY',14450);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Hubert','Reilly',NULL,'[email protected]','9004 N. Lake Rd. ','Amityville','NY',11701);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Caleb','England',NULL,'[email protected]','649 Marvon St. ','Pleasanton','CA',94566);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Elmira','Levy',NULL,'[email protected]','6 Columbia Dr. ','Spring Valley','NY',10977);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Waldo','Hart',NULL,'[email protected]','9782 Pineknoll Lane ','Queensbury','NY',12804);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Bea','Kane',NULL,'[email protected]','398 Green Lake Ave. ','Mahopac','NY',10541);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Gilberto','Sanders',NULL,'[email protected]','186 Roehampton Ave.
','Woodside','NY',11377);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Benny','Bender',NULL,'[email protected]','520 W. Hamilton St. ','Elmont','NY',11003);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Desmond','Rose',NULL,'[email protected]','9956 Lexington Rd. ','Mount
Vernon','NY',10550);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Parthenia','Holman',NULL,'[email protected]','17 Orange Court
','Ithaca','NY',14850);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Dung','King',NULL,'[email protected]','523 Prairie St. ','West Islip','NY',11795);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Sherril','Alvarado',NULL,'[email protected]','9434 Cypress Court
','Desoto','TX',75115);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Alisia','Albert',NULL,'[email protected]','9490 Coffee St. ','Garland','TX',75043);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Kallie','Best','(507) 997-4112','[email protected]','9842 Fairview St. ','Rochester','NY',14606);
INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Dottie','Roberts',NULL,'[email protected]','8252 Theatre St. ','Port
Washington','NY',11050);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Hubert','Stone',NULL,'[email protected]','203 Penn St. ','Ridgecrest','CA',93555);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Gabriella','Jones',NULL,'[email protected]','9100 Gates Ave. ','Mount
Vernon','NY',10550);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Penney','Hall',NULL,'[email protected]','8306 Jockey Hollow Street
','Liverpool','NY',13090);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Mallie','Osborn',NULL,'[email protected]','9022 Bridgeton St. ','Newburgh','NY',12550);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Britteny','Schroeder',NULL,'[email protected]','855 Bohemia Dr.
','Pittsford','NY',14534);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Sommer','Hopkins',NULL,'[email protected]','827 Laurel Ave.
','Tonawanda','NY',14150);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Jewel','Sparks',NULL,'[email protected]','12 Vine Road ','Oakland Gardens','NY',11364);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Deandrea','Vega','(914) 818-7312','[email protected]','613 Mill Pond St.
','Yonkers','NY',10701);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Charlsie','Carson',NULL,'[email protected]','3 South Grant Avenue ','Saint
Albans','NY',11412);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Kandace','Ayers',NULL,'[email protected]','9005 Lookout Lane ','Santa
Monica','CA',90403);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Lenore','Valdez',NULL,'[email protected]','829 Birchpond Street ','Spring
Valley','NY',10977);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Drucilla','Gilliam',NULL,'[email protected]','8257 E. Westminster Ave. ','Santa
Clara','CA',95050);
INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Keturah','Reid','(361) 394-2024','[email protected]','747 SE. Beech Ave. ','Corpus
Christi','TX',78418);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Herminia','Reyes',NULL,'[email protected]','782 Stonybrook Street
','Centereach','NY',11720);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Tuyet','Rosa',NULL,'[email protected]','9038 Golden Star Street ','South El
Monte','CA',91733);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Ara','Vazquez',NULL,'[email protected]','343 2nd Court ','San Carlos','CA',94070);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Barry','Albert',NULL,'[email protected]','13 Grand St. ','Auburn','NY',13021);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Verdell','Joyner',NULL,'[email protected]','9191 Sierra St. ','Far Rockaway','NY',11691);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Han','Wade',NULL,'[email protected]','587 Sulphur Springs St. ','Howard
Beach','NY',11414);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Anton','Barton','(716) 472-3707','[email protected]','7284 East Indian Spring Rd.
','Buffalo','NY',14215);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Vito','Pickett',NULL,'[email protected]','93 High Point Street
','Canandaigua','NY',14424);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Charlene','Norris',NULL,'[email protected]','972 South Sierra Drive
','Syosset','NY',11791);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Efren','Whitfield',NULL,'[email protected]','139 Union Rd. ','Euless','TX',76039);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Santa','Larson',NULL,'[email protected]','5 Bellevue Dr. ','Valley Stream','NY',11580);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Carmelina','Sellers',NULL,'[email protected]','12 Race St. ','Ithaca','NY',14850);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Carmela','Hays',NULL,'[email protected]','149 Pennington Ave. ','Lawndale','CA',90260);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Patrina','Tanner',NULL,'[email protected]','7136 Selby Road ','Scarsdale','NY',10583);
INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Rikki','Morrow','(682) 936-1482','[email protected]','7096 Plumb Branch Road ','Fort
Worth','TX',76110);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Junita','Reese',NULL,'[email protected]','8773 North Walt Whitman Court ','Bay
Shore','NY',11706);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Ryan','Carter',NULL,'[email protected]','8684 Studebaker Road ','Nanuet','NY',10954);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Almeta','Benjamin',NULL,'[email protected]','8456 Oakwood St.
','Sunnyside','NY',11104);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Beatris','Joyner',NULL,'[email protected]','7463 Gonzales Rd. ','Spring
Valley','NY',10977);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Mechelle','Chan',NULL,'[email protected]','458 Overlook Street ','Richmond
Hill','NY',11418);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Earlean','Pena',NULL,'[email protected]','7698 Fulton St. ','Rome','NY',13440);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Katherin','Clark',NULL,'[email protected]','996 Iroquois Street ','Pittsford','NY',14534);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Chanel','May',NULL,'[email protected]','806 Saxton Court ','Garden City','NY',11530);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Aaron','Knapp','(914) 402-4335','[email protected]','807 Grandrose Ave.
','Yonkers','NY',10701);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Sindy','Anderson',NULL,'[email protected]','543 Halifax Ave. ','Pomona','CA',91768);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Sheree','Blanchard',NULL,'[email protected]','41 Glenwood Ave.
','Queensbury','NY',12804);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Charlesetta','Soto',NULL,'[email protected]','25 South Colonial Drive
','Poughkeepsie','NY',12601);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Wendie','Nash','(805) 389-2549','[email protected]','9 South Road
','Oxnard','CA',93035);
INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Vernetta','Banks',NULL,'[email protected]','7633 Albany St. ','Brooklyn','NY',11201);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Myrtle','Gardner',NULL,'[email protected]','303 Creekside Street
','Farmingdale','NY',11735);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Agustina','Lawrence',NULL,'[email protected]','9347 Delaware Ave.
','Brooklyn','NY',11201);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Trinidad','Chapman',NULL,'[email protected]','7371 Glen Eagles Street
','Ronkonkoma','NY',11779);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Kim','Clark',NULL,'[email protected]','19 Liberty St. ','Merrick','NY',11566);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Annabelle','Hebert',NULL,'[email protected]','9745 Nicolls Lane ','Spring
Valley','NY',10977);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Corine','Stuart',NULL,'[email protected]','5 Penn Street ','Clifton Park','NY',12065);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Kiesha','Bond',NULL,'[email protected]','29 Marvon St. ','San Carlos','CA',94070);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Kenyetta','Mason',NULL,'[email protected]','98 Poplar Ave. ','Flushing','NY',11354);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Marcene','Curtis','(914) 361-6045','[email protected]','7699 Illinois Lane
','Yonkers','NY',10701);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Sheila','Goodman',NULL,'[email protected]','9586 Chestnut St.
','Uniondale','NY',11553);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Romeo','Steele',NULL,'[email protected]','162 Crescent Lane ','Port Jefferson
Station','NY',11776);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Tam','Fisher','(507) 351-9375','[email protected]','8000 Woodsman Lane
','Rochester','NY',14606);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Gena','Owens',NULL,'[email protected]','43 Buckingham St. ','Desoto','TX',75115);
INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Phebe','Soto',NULL,'[email protected]','9239 Leatherwood Rd. ','South Ozone
Park','NY',11420);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Leticia','Snyder',NULL,'[email protected]','173 Lyme Dr. ','Pittsford','NY',14534);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Chantell','Bridges','(716) 941-6072','[email protected]','8478 N. Wrangler Dr.
','Buffalo','NY',14215);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Ileana','Holt',NULL,'[email protected]','817 Adams St. ','Patchogue','NY',11772);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Nakisha','Clay',NULL,'[email protected]','8996 Beechwood Ave. ','Port
Washington','NY',11050);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Cheryll','Snyder',NULL,'[email protected]','77 E. Liberty St. ','Brooklyn','NY',11201);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Consuela','Collier',NULL,'[email protected]','338 S. Holly Avenue ','North
Tonawanda','NY',14120);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Aubrey','Durham',NULL,'[email protected]','14 Foster Ave. ','Port
Washington','NY',11050);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Nita','Guy',NULL,'[email protected]','75 Academy Street ','Port Chester','NY',10573);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Carmina','Emerson',NULL,'[email protected]','7137 Monroe Road
','Banning','CA',92220);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Georgeann','Rojas',NULL,'[email protected]','691 Devon Ave. ','Desoto','TX',75115);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Leslie','Higgins',NULL,'[email protected]','805 Logan Ave. ','Saratoga
Springs','NY',12866);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Emmaline','Huber',NULL,'[email protected]','7975 Harrison Rd. ','Mount
Vernon','NY',10550);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Mercy','Brown',NULL,'[email protected]','8207 Central Street ','Hollis','NY',11423);
INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Jenell','Crosby','(631) 544-4772','[email protected]','507 Fulton Street
','Brentwood','NY',11717);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Leila','Barr',NULL,'[email protected]','120 Fremont Rd. ','Carmel','NY',10512);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Deandrea','Cox',NULL,'[email protected]','617 Sycamore Street
','Huntington','NY',11743);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Shawnna','Frank',NULL,'[email protected]','17 NW. Cottage Lane
','Woodside','NY',11377);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Brenton','Whitaker',NULL,'[email protected]','25 Elmwood Rd. ','Niagara
Falls','NY',14304);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Jaqueline','Cummings',NULL,'[email protected]','478 Wrangler St.
','Huntington Station','NY',11746);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Yang','Giles',NULL,'[email protected]','25 Bridle Lane ','San Angelo','TX',76901);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Brigid','Sharp',NULL,'[email protected]','495 Sleepy Hollow Court ','Santa
Clara','CA',95050);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Karl','Stephens',NULL,'[email protected]','208 Thatcher Rd. ','Rockville
Centre','NY',11570);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Elvina','Gates',NULL,'[email protected]','112 Smith St. ','Pleasanton','CA',94566);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Carlie','Terrell','(914) 517-8036','[email protected]','7437 Snake Hill Road
','Yonkers','NY',10701);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Donovan','Cantrell','(510) 624-3824','[email protected]','601 Winchester Dr.
','Oakland','CA',94603);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Alden','Atkinson',NULL,'[email protected]','46 Valley St. ','Shirley','NY',11967);
INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Carissa','Cross',NULL,'[email protected]','9335 West Main Dr. ','Huntington
Station','NY',11746);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Joy','Underwood',NULL,'[email protected]','7297 Armstrong Dr. ','Apple
Valley','CA',92307);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Geraldine','O''donnell',NULL,'geraldine.o''[email protected]','8241 Lookout Rd.
','Flushing','NY',11354);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Bronwyn','Vargas',NULL,'[email protected]','35 James Street ','New
Windsor','NY',12553);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Abram','Copeland',NULL,'[email protected]','9782 Indian Spring Lane
','Harlingen','TX',78552);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Mellisa','Griffin',NULL,'[email protected]','49 Alton Circle ','Los Banos','CA',93635);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Qiana','Jackson',NULL,'[email protected]','56 Galvin Street ','East
Northport','NY',11731);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Magali','Dixon','(248) 279-5331','[email protected]','815 Del Monte Court
','Troy','NY',12180);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Zulema','Clemons','(510) 565-8496','[email protected]','75 W. Howard St.
','Oakland','CA',94603);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Carina','Lynch',NULL,'[email protected]','64 Jennings Road ','Wappingers
Falls','NY',12590);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Jesus','Burch',NULL,'[email protected]','7024 Squaw Creek Street
','Desoto','TX',75115);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Selene','Vega',NULL,'[email protected]','11 Sierra St. ','Campbell','CA',95008);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Jong','Guthrie',NULL,'[email protected]','889 Leatherwood Drive
','Bethpage','NY',11714);
INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Lise','Hebert',NULL,'[email protected]','140 East Broad Lane ','Vista','CA',92083);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Joshua','Berg',NULL,'[email protected]','16 East St. ','Ossining','NY',10562);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Georgina','Gonzales',NULL,'[email protected]','307 Chapel St.
','Endicott','NY',13760);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Rudolph','Velez',NULL,'[email protected]','9397 Pleasant Drive ','Mount
Vernon','NY',10550);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Luke','Kramer',NULL,'[email protected]','7955 Delaware Drive
','Bethpage','NY',11714);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Edgar','Quinn',NULL,'[email protected]','556 Dogwood Ave. ','Harlingen','TX',78552);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Tara','Maynard',NULL,'[email protected]','9375 Fordham Street
','Lindenhurst','NY',11757);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Bella','Perez',NULL,'[email protected]','43 Green Lake Street ','Duarte','CA',91010);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Nathaniel','Davidson',NULL,'[email protected]','7476 Henry Smith Street
','Rome','NY',13440);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Chauncey','Donaldson',NULL,'[email protected]','7412 Golf Ave. ','Franklin
Square','NY',11010);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Heide','Reed',NULL,'[email protected]','9174 Coffee Drive ','Floral Park','NY',11001);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Trang','Hardin',NULL,'[email protected]','9255 Myers Drive ','Depew','NY',14043);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Gabriela','Warren','(562) 986-2247','[email protected]','9947 Brewery Ave. ','Long
Beach','NY',11561);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Dale','Rasmussen',NULL,'[email protected]','8590 Adams Street ','Kingston','NY',12401);
INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Tammie','Cherry',NULL,'[email protected]','791 Wakehurst Dr.
','Massapequa','NY',11758);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Bethany','Herring',NULL,'[email protected]','7563 High Point Street ','Port Jefferson
Station','NY',11776);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Barbra','Dickerson',NULL,'[email protected]','8424 E. Rockcrest Dr.
','Ridgecrest','CA',93555);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Neoma','Daugherty',NULL,'[email protected]','80 Spring Street ','Mount
Vernon','NY',10550);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Nanette','Roman',NULL,'[email protected]','8254 North Riverview Street
','Glendora','CA',91740);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Adriene','Rollins',NULL,'[email protected]','55 Cambridge Street
','Plainview','NY',11803);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Susannah','Fields',NULL,'[email protected]','17 Railroad Street ','Far
Rockaway','NY',11691);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Dung','Reid',NULL,'[email protected]','468 West Washington Ave. ','Canyon
Country','CA',91387);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Ben','Stone',NULL,'[email protected]','8855 University St. ','Ithaca','NY',14850);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Nubia','Anderson',NULL,'[email protected]','584 NW. Hilldale Drive
','Ronkonkoma','NY',11779);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Rosamaria','Meyer',NULL,'[email protected]','446 Elizabeth St.
','Webster','NY',14580);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Todd','Waters',NULL,'[email protected]','92 Cedar Swamp Street ','Bay
Shore','NY',11706);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Kimbery','Nieves',NULL,'[email protected]','768 Roehampton St. ','San
Carlos','CA',94070);
INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Phuong','Wolf',NULL,'[email protected]','7765 N. Annadale Dr.
','Schenectady','NY',12302);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Adelaida','Hancock',NULL,'[email protected]','669 S. Gartner Street ','San
Pablo','CA',94806);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Brianne','Hays',NULL,'[email protected]','88 Tailwater Ave. ','San Pablo','CA',94806);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Rufina','Chandler',NULL,'[email protected]','7985 Alderwood Street ','New Hyde
Park','NY',11040);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Devin','Velazquez','(631) 254-8497','[email protected]','61 Redwood St.
','Brentwood','NY',11717);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Bonita','Marshall',NULL,'[email protected]','48 Bald Hill Drive ','Endicott','NY',13760);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Myrl','Gay',NULL,'[email protected]','8708 Taylor Lane ','Garland','TX',75043);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Earline','Gordon',NULL,'[email protected]','81 Railroad Drive
','Ronkonkoma','NY',11779);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Sung','Chambers',NULL,'[email protected]','369 N. Virginia Street
','Kingston','NY',12401);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Gustavo','Gamble',NULL,'[email protected]','8054 W. Meadowbrook Street ','Port
Washington','NY',11050);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Ciera','Webb',NULL,'[email protected]','958 Anderson Ave. ','Orchard Park','NY',14127);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Roy','Chan',NULL,'[email protected]','7578 Middle River St. ','Pomona','CA',91768);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Houston','Vasquez',NULL,'[email protected]','845 Aspen Street
','Fullerton','CA',92831);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Cheree','Hale',NULL,'[email protected]','95 Lyme Avenue ','Oswego','NY',13126);
INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Odette','Moses',NULL,'[email protected]','899 Overlook Lane ','Newburgh','NY',12550);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Lenita','Bonner',NULL,'[email protected]','7286 Swanson Drive ','Los Banos','CA',93635);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Shona','Mcmillan',NULL,'[email protected]','57 West Maple Dr. ','Apple
Valley','CA',92307);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Piedad','Irwin',NULL,'[email protected]','581 Garden St. ','Coram','NY',11727);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Loan','Graham',NULL,'[email protected]','57 Glen Eagles St. ','Jackson
Heights','NY',11372);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Stan','Saunders',NULL,'[email protected]','407 Essex Dr. ','Canandaigua','NY',14424);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Jackeline','Colon',NULL,'[email protected]','9916 Cedarwood Drive ','Wappingers
Falls','NY',12590);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Marlen','Dawson',NULL,'[email protected]','67 Oak Valley Street
','Woodside','NY',11377);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Alexis','Mack','(845) 707-6088','[email protected]','7767 Sutor Ave. ','New City','NY',10956);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Mica','Barry',NULL,'[email protected]','3 SE. Sugar St. ','Hopewell Junction','NY',12533);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Shanice','Spears',NULL,'[email protected]','5 Piper Ave. ','Brooklyn','NY',11201);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Garth','Huff',NULL,'[email protected]','794 East University St. ','Glendora','CA',91740);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Dione','Pratt',NULL,'[email protected]','864 Winding Way St. ','Pleasanton','CA',94566);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Victor','Pittman',NULL,'[email protected]','9294 Devon Dr. ','Astoria','NY',11102);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Allie','Conley',NULL,'[email protected]','96 High Point Road ','Lawndale','CA',90260);
INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Shanelle','Anderson',NULL,'[email protected]','646 Surrey Street
','Bethpage','NY',11714);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Minnie','Compton',NULL,'[email protected]','185 Hudson Street ','South Richmond
Hill','NY',11419);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Shiloh','Bates',NULL,'[email protected]','15 Wellington Dr. ','Monsey','NY',10952);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Lakenya','Oliver',NULL,'[email protected]','82 Bayport Court ','San
Lorenzo','CA',94580);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Sally','Kinney',NULL,'[email protected]','7565 High Dr. ','Floral Park','NY',11001);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Edith','Davenport',NULL,'[email protected]','685 Alton Road ','Ontario','CA',91762);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Alline','Beasley',NULL,'[email protected]','8704 NE. Olive Ave. ','North
Tonawanda','NY',14120);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Travis','Whitley',NULL,'[email protected]','60 Euclid Ave. ','Saint Albans','NY',11412);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Vanessa','West',NULL,'[email protected]','34 Prairie Lane ','New Rochelle','NY',10801);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Trudy','Riddle',NULL,'[email protected]','8943 Johnson Street ','Schenectady','NY',12302);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Shauna','Edwards',NULL,'[email protected]','8 Dogwood Ave. ','Yorktown
Heights','NY',10598);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Clorinda','Donovan',NULL,'[email protected]','9690 E. Morris Ave.
','Jamestown','NY',14701);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Raven','Curtis',NULL,'[email protected]','18 Summit Lane ','Lawndale','CA',90260);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Verda','Gilbert',NULL,'[email protected]','54 Hillcrest Drive ','East
Northport','NY',11731);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Renay','Atkins',NULL,'[email protected]','7146 Leeton Ridge Ave. ','Woodside','NY',11377);
INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Tama','Berg',NULL,'[email protected]','3 Cardinal Avenue ','Hollis','NY',11423);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Dalia','Carson','(507) 186-2004','[email protected]','7175 Galvin St.
','Rochester','NY',14606);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('America','Swanson',NULL,'[email protected]','83 South Arlington Lane
','Webster','NY',14580);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Cinda','Rocha',NULL,'[email protected]','926 North Oklahoma Dr. ','Los
Banos','CA',93635);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Shea','Howell',NULL,'[email protected]','67 Arch Rd. ','South El Monte','CA',91733);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Kimberli','Cline',NULL,'[email protected]','7115 Stonybrook Court
','Centereach','NY',11720);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Emanuel','Mckee',NULL,'[email protected]','9411 Lake Dr.
','Schenectady','NY',12302);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Whitley','Cannon',NULL,'[email protected]','614 High Point Lane ','Coram','NY',11727);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Tereasa','Bird',NULL,'[email protected]','7526 Vine Drive ','Ronkonkoma','NY',11779);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Dante','Grimes',NULL,'[email protected]','23 Shore St. ','Duarte','CA',91010);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Joeann','Garrison',NULL,'[email protected]','1 Harrison St. ','Ontario','CA',91762);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Omega','Johnston',NULL,'[email protected]','9935 Tarkiln Hill St. ','Canyon
Country','CA',91387);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Conrad','Mueller',NULL,'[email protected]','3 Myrtle St. ','Massapequa','NY',11758);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Glady','Wells',NULL,'[email protected]','627 Ramblewood Ave. ','Syosset','NY',11791);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Tisha','Petty','(210) 851-3122','[email protected]','9083 Lake View Ave. ','San
Antonio','TX',78213);
INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Claris','Santiago',NULL,'[email protected]','763 Mountainview Dr.
','Newburgh','NY',12550);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Obdulia','Barber',NULL,'[email protected]','878 Lexington Rd.
','Newburgh','NY',12550);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Shantel','Gregory',NULL,'[email protected]','7722 Second Lane ','West
Islip','NY',11795);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Ai','Forbes',NULL,'[email protected]','254 Central St. ','Franklin Square','NY',11010);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Ebony','Cotton',NULL,'[email protected]','8979 Miller St. ','West Babylon','NY',11704);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Arla','Ellis',NULL,'[email protected]','127 Crescent Ave. ','Utica','NY',13501);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Magdalena','Sherman',NULL,'[email protected]','176 Sunbeam St.
','Oswego','NY',13126);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Tarra','Guerrero',NULL,'[email protected]','10 Baker St. ','Auburn','NY',13021);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Consuela','Romero',NULL,'[email protected]','54 Elm Court
','Monroe','NY',10950);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Cindie','Franklin',NULL,'[email protected]','7249 Franklin St. ','Lawndale','CA',90260);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Sharyn','Brewer',NULL,'[email protected]','70 Columbia Ave. ','Hollis','NY',11423);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Karren','Stevenson',NULL,'[email protected]','155 Old York St. ','San
Carlos','CA',94070);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Divina','Reeves',NULL,'[email protected]','767 Bradford Dr. ','Newburgh','NY',12550);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Novella','Ross',NULL,'[email protected]','9418 Acacia Drive ','Glendora','CA',91740);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Omega','Huff',NULL,'[email protected]','63 Devon St. ','Santa Monica','CA',90403);
INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Ashleigh','Finch',NULL,'[email protected]','82 Hudson Court ','Newburgh','NY',12550);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Corina','Lynch',NULL,'[email protected]','44 Sunbeam Dr. ','Rosedale','NY',11422);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Joe','Melton',NULL,'[email protected]','8998 Hartford Street ','New Windsor','NY',12553);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Bernetta','Summers',NULL,'[email protected]','1 Young Ave. ','Longview','TX',75604);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Inez','Snider',NULL,'[email protected]','837 Catherine Lane ','Ronkonkoma','NY',11779);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Neida','King','(442) 778-1121','[email protected]','137 Bohemia St. ','Oceanside','NY',11572);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Tona','Velasquez',NULL,'[email protected]','9166 Trout St. ','Whitestone','NY',11357);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Rozanne','Reyes',NULL,'[email protected]','11 W. Surrey Drive ','Garden
City','NY',11530);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Lekisha','Pope',NULL,'[email protected]','390 Livingston Avenue ','Freeport','NY',11520);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Jama','Rodriquez',NULL,'[email protected]','681 Smith Dr. ','Upland','CA',91784);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Eloisa','Tucker',NULL,'[email protected]','7268 Leatherwood Ave. ','Howard
Beach','NY',11414);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Arie','Hunter',NULL,'[email protected]','66 Old State Rd. ','Flushing','NY',11354);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Sanora','Webster','(424) 464-7290','[email protected]','74 Beach St. ','Los
Angeles','CA',90008);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Kate','Barber',NULL,'[email protected]','46 W. Oak Valley Ave. ','Saratoga
Springs','NY',12866);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Yvone','Guerrero',NULL,'[email protected]','8548 Jackson Ave. ','Merrick','NY',11566);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Kami','Rios',NULL,'[email protected]','8400 8th Dr. ','Encino','CA',91316);
INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Annett','Rush',NULL,'[email protected]','758 Fordham Lane ','Rosedale','NY',11422);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Carman','Hardy',NULL,'[email protected]','800 Whitemarsh St.
','Jamestown','NY',14701);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Dorothea','Miranda',NULL,'[email protected]','7882 Parker St. ','Upland','CA',91784);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Agatha','Daniels',NULL,'[email protected]','125 Canal St. ','South El
Monte','CA',91733);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Alexandria','Zamora',NULL,'[email protected]','95 Cherry Circle
','Schenectady','NY',12302);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Thad','Gilliam',NULL,'[email protected]','8844 Gonzales Court ','Levittown','NY',11756);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Inger','Jennings',NULL,'[email protected]','38 NW. Shore Lane
','Patchogue','NY',11772);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Karren','Lamb','(559) 628-2239','[email protected]','35 N. Chapel St. ','Fresno','CA',93706);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Noble','Glover',NULL,'[email protected]','728 W. Rocky River Street ','Orchard
Park','NY',14127);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Octavia','Donaldson',NULL,'[email protected]','8095 Wayne Ave.
','Levittown','NY',11756);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Latashia','Travis',NULL,'[email protected]','7877 King Rd. ','Upland','CA',91784);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Destiny','Goodman',NULL,'[email protected]','29 Smoky Hollow St.
','Westbury','NY',11590);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Christiana','Gross',NULL,'[email protected]','645 North Richardson Road ','Orchard
Park','NY',14127);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Nestor','Haynes','(281) 969-4579','[email protected]','27 Nut Swamp Street
','Houston','TX',77016);
INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Grisel','Maynard',NULL,'[email protected]','353 North Arch St. ','Ballston
Spa','NY',12020);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Shenna','Espinoza',NULL,'[email protected]','202 North George Street
','Queensbury','NY',12804);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Trena','Rogers',NULL,'[email protected]','502 Sherwood St. ','Campbell','CA',95008);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Lucile','Manning',NULL,'[email protected]','511 Livingston Lane
','Campbell','CA',95008);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Veronique','Fulton',NULL,'[email protected]','81 Hilldale Ave. ','Ballston
Spa','NY',12020);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Starr','Schneider',NULL,'[email protected]','77 Mulberry Street ','Shirley','NY',11967);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Rona','Rojas','(408) 611-3553','[email protected]','815 Riverview St. ','San
Jose','CA',95127);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Pandora','Estes',NULL,'[email protected]','228 Shadow Brook Drive ','New Hyde
Park','NY',11040);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Renna','Williams',NULL,'[email protected]','7398 SW. Glen Ridge Road ','South
Ozone Park','NY',11420);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Lanora','Robbins',NULL,'[email protected]','31 W. Maiden Lane ','West
Babylon','NY',11704);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Juliane','Dillard',NULL,'[email protected]','63 Birchwood Court ','Glendora','CA',91740);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Carlena','Salinas',NULL,'[email protected]','1 Wagon Street ','Jamaica','NY',11432);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Kimberley','Reynolds',NULL,'[email protected]','8475 Homewood Street ','Port
Washington','NY',11050);
INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Johana','Jacobson','(507) 407-9384','[email protected]','29 San Juan St.
','Rochester','NY',14606);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Enoch','Rosario','(559) 329-7615','[email protected]','186 Arlington St.
','Fresno','CA',93706);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Dorine','Thornton',NULL,'[email protected]','8730 N. Atlantic Street
','Sunnyside','NY',11104);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Eliz','Lynch',NULL,'[email protected]','717 West Deerfield Ave. ','Uniondale','NY',11553);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Mercedez','Brooks',NULL,'[email protected]','7483 Ann St. ','Duarte','CA',91010);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Wynona','Douglas',NULL,'[email protected]','6 Country Ave. ','Harlingen','TX',78552);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Desire','Mcgowan','(661) 800-8091','[email protected]','942 North Ohio Road
','Bakersfield','CA',93306);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Elmo','Sweeney',NULL,'[email protected]','43 Arch Ave. ','San Carlos','CA',94070);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Kenton','Hughes',NULL,'[email protected]','632 Sleepy Hollow Drive
','Canandaigua','NY',14424);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Cesar','Wilkins','(619) 685-5786','[email protected]','7 Inverness St. ','San
Diego','CA',92111);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Phylicia','Stout',NULL,'[email protected]','8842 Littleton Lane ','Canandaigua','NY',14424);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Nanette','Harris',NULL,'[email protected]','26 Pin Oak Lane ','East
Meadow','NY',11554);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Ulrike','Chan',NULL,'[email protected]','7949 Lancaster St. ','Port Chester','NY',10573);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Genoveva','Lloyd',NULL,'[email protected]','706 Devonshire St. ','Bayside','NY',11361);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Sheryl','Chase',NULL,'[email protected]','388 Cedar Avenue ','Floral Park','NY',11001);
INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Trista','Lambert',NULL,'[email protected]','79 River Street ','Fairport','NY',14450);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Vivian','Deleon',NULL,'[email protected]','9925 Hamilton Street ','Jamaica','NY',11432);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Genny','Fields',NULL,'[email protected]','9145 San Juan Dr. ','Amityville','NY',11701);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Eliseo','Knight',NULL,'[email protected]','693 Holly Street ','Woodhaven','NY',11421);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Delma','Bailey','(657) 454-8493','[email protected]','9883 West King Lane
','Anaheim','CA',92806);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Dewayne','Herring',NULL,'[email protected]','9015 Willow Lane
','Webster','NY',14580);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Nevada','Hood',NULL,'[email protected]','515 Bank Rd. ','Hopewell Junction','NY',12533);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Angelika','Perry',NULL,'[email protected]','7684 South Branch Drive
','Canandaigua','NY',14424);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Shayla','Hart',NULL,'[email protected]','9092 Aspen St. ','Woodhaven','NY',11421);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Willetta','Murphy',NULL,'[email protected]','436 Devonshire Street ','East
Elmhurst','NY',11369);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Sandee','Alvarado',NULL,'[email protected]','69 Bowman Street ','Depew','NY',14043);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Mila','Moody','(248) 234-5902','[email protected]','675 Williams St. ','Troy','NY',12180);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Loyce','Conway',NULL,'[email protected]','729 State Lane ','Central Islip','NY',11722);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Thanh','Figueroa',NULL,'[email protected]','6 Roberts Drive ','Mount
Vernon','NY',10550);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Farrah','Orr',NULL,'[email protected]','8711 W. Ashley St. ','New Hyde Park','NY',11040);
INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Hugh','Craft',NULL,'[email protected]','8716 Homewood Court ','Centereach','NY',11720);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Eleanor','Mendez',NULL,'[email protected]','4 West St. ','Port Chester','NY',10573);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Lamar','Bush','(716) 294-7174','[email protected]','76 Lilac Drive ','Buffalo','NY',14215);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Lurlene','Finch','(914) 367-7691','[email protected]','849 Magnolia St.
','Yonkers','NY',10701);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Shanda','Stevenson',NULL,'[email protected]','9547 N. Courtland St.
','Freeport','NY',11520);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Adrien','Hunter',NULL,'[email protected]','720 Thompson Lane ','Rego
Park','NY',11374);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Ophelia','Decker',NULL,'[email protected]','69 Rockwell Court ','New
Windsor','NY',12553);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Sonja','Walls',NULL,'[email protected]','30 Marshall Dr. ','Queensbury','NY',12804);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Harold','O''connor',NULL,'harold.o''[email protected]','9530 Summerhouse Street ','Santa
Cruz','CA',95060);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Miranda','Kennedy',NULL,'[email protected]','726 East High St.
','Astoria','NY',11102);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Jasper','Castro',NULL,'[email protected]','977 SE. Railroad Road ','Forney','TX',75126);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Penni','Best','(657) 611-2991','[email protected]','875 Second Drive
','Anaheim','CA',92806);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Lurlene','Cotton',NULL,'[email protected]','8218 George St. ','Pleasanton','CA',94566);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Kelsey','Noble',NULL,'[email protected]','36 Pearl Court ','Mount Vernon','NY',10550);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Edris','Barrett',NULL,'[email protected]','36 Pulaski Drive ','Plattsburgh','NY',12901);
INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Tempie','Jacobson',NULL,'[email protected]','136 Old Fairview St.
','Smithtown','NY',11787);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Dollie','Cervantes','(682) 362-7457','[email protected]','8828 Applegate Drive ','Fort
Worth','TX',76110);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Lashunda','Cole',NULL,'[email protected]','783 Baker St. ','Monsey','NY',10952);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Justina','Jenkins',NULL,'[email protected]','345 SE. Green Lane ','Shirley','NY',11967);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Londa','Gould','(361) 206-5550','[email protected]','9169 Beech Lane ','Corpus
Christi','TX',78418);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Mikel','Wilkerson',NULL,'[email protected]','9233 Clinton St. ','Atwater','CA',95301);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Carola','Johns',NULL,'[email protected]','7077 Fordham Rd. ','Santa Cruz','CA',95060);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Lorrie','Justice',NULL,'[email protected]','8396 Brook Drive ','Pomona','CA',91768);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Tayna','Wade','(661) 858-1224','[email protected]','65 Smith Store Dr.
','Bakersfield','CA',93306);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Mark','Benton',NULL,'[email protected]','83 Eagle St. ','East Elmhurst','NY',11369);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Zona','Cameron',NULL,'[email protected]','42 Bridle Court ','East Northport','NY',11731);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Nicola','Knight',NULL,'[email protected]','25 SE. Miles Lane ','Scarsdale','NY',10583);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Elana','Miles',NULL,'[email protected]','7077 Euclid Ave. ','Liverpool','NY',13090);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Merrie','Fowler',NULL,'[email protected]','532 Leatherwood Ave.
','Scarsdale','NY',10583);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Macie','Ayers',NULL,'[email protected]','8730 Longfellow St. ','Bellmore','NY',11710);
INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Son','Warner',NULL,'[email protected]','20 W. Rosewood Ave. ','Rockville
Centre','NY',11570);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Lee','Dunn','(408) 807-6157','[email protected]','8626 Grand Ave. ','San Jose','CA',95127);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Florrie','Little',NULL,'[email protected]','8330 Marsh St. ','New Rochelle','NY',10801);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Ernest','Rollins',NULL,'[email protected]','4 West Ridge Dr. ','Oakland
Gardens','NY',11364);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Jamaal','Morrison',NULL,'[email protected]','796 SE. Nut Swamp St. ','Staten
Island','NY',10301);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Cassie','Cline',NULL,'[email protected]','947 Lafayette Drive ','Brooklyn','NY',11201);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Lezlie','Lamb',NULL,'[email protected]','401 Brandywine Street ','Central Islip','NY',11722);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Ivette','Estes',NULL,'[email protected]','88 N. Canterbury Ave.
','Canandaigua','NY',14424);

INSERT INTO customers(first_name, last_name, phone, email, street, city, state, zip_code)
VALUES('Ester','Acevedo',NULL,'[email protected]','671 Miles Court ','San Lorenzo','CA',94580);

You might also like