Advertisement
Guest User

Untitled

a guest
May 23rd, 2017
570
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MySQL 3.03 KB | None | 0 0
  1. --Employee entries
  2.  
  3. INSERT INTO Employee(LastName, FirstName, Address, Phone, POSITION_ID, HireDate, Age, Email)
  4. VALUES('Williams', 'Willie', '3843 Happy Ave, Chilitown TX', '800-555-5932', 1, '1997-03-13', 42, 'wackywillie@herbiesballonland.com');
  5.  
  6. INSERT INTO Employee(LastName, FirstName, Address, Phone, POSITION_ID, HireDate, Age, Email)
  7. VALUES('Sven', 'Harper', '54 Lord Lane, Ravenholm MI', '907-871-0602', 3, '1997-06-17', 25, 'SuperSven@herbiesballonland.com');
  8.  
  9. INSERT INTO Employee(LastName, FirstName, Address, Phone, POSITION_ID, HireDate, Age, Email)
  10. VALUES('Grahm', 'Matthew', '583 Jackton ave, Yaklaba MD', '607-426-8168', 2, '1998-01-11', 30, 'GrahmMat@herbiesballonland.com');
  11.  
  12. INSERT INTO Employee(LastName, FirstName, Address, Phone, POSITION_ID, HireDate, Age, Email)
  13. VALUES('Lambert', 'Daniel', '4358 Pine Tree Lane
  14. Silver Spring, MD', '240-417-4843', 2, '1998-03-31', 53, 'DannieLamb@herbiesballonland.com');
  15.  
  16. INSERT INTO Employee(LastName, FirstName, Address, Phone, POSITION_ID, HireDate, Age, Email)
  17. VALUES('Gatlin', 'Lucille', '254 Roguski Road
  18. Marksville, LA', '318-240-3030', 2, '1998-05-03', 32, 'LuckyLucille@herbiesballonland.com');
  19.  
  20. INSERT INTO Employee(LastName, FirstName, Address, Phone, POSITION_ID, HireDate, Age, Email)
  21. VALUES('Cummings', 'Ralph', '4663 Backwordsville,
  22. GA 19283', '695-555-9275', 4,  '1999-11-09', 42, 'Bumperpool@herbiesballonland.com');
  23.  
  24. INSERT INTO Employee(LastName, FirstName, Address, Phone, POSITION_ID, HireDate, Age, Email)
  25. VALUES('Bannor', 'David', '8675 Comic Lane Hulkville,
  26. GA 19283', '658-548-5848', 2,  '2001-05-29', 37, 'thehulk@herbiesballonland.com');
  27.  
  28. INSERT INTO Employee(LastName, FirstName, Address, Phone, POSITION_ID, HireDate, Age, Email)
  29. VALUES('Wayne', 'Bruce', '8675 Cave Road Gathom,
  30. NY 27374', '986-836-4809', 3,  '2003-09-19', 27, 'batman@herbiesballonland.com');
  31.  
  32. INSERT INTO Employee(LastName, FirstName, Address, Phone, POSITION_ID, HireDate, Age, Email)
  33. VALUES('Henderson', 'Katherine', ' 2656 Pennsylvania Avenue
  34. Edison, NJ 08817 ', '732-393-6564', 5,  '2003-12-19', 40, 'Katherine@herbiesballonland.com');
  35.  
  36. INSERT INTO Employee(LastName, FirstName, Address, Phone, POSITION_ID, HireDate, Age, Email)
  37. VALUES('Partin', 'Clement', '2804 Wetzel Lane
  38. Traverse City, MI 49686', '231-360-1811', 4,  '2004-03-03', 26, 'Clementine@herbiesballonland.com');
  39.  
  40. INSERT INTO Employee(LastName, FirstName, Address, Phone, POSITION_ID, HireDate, Age, Email)
  41. VALUES('Musselman', 'Lily', ' 1128 Short Street
  42. Austin, TX 78741 ', '512-874-8677', 5,  '2005-07-13', 23, 'Lilypadd@herbiesballonland.com');
  43.  
  44. INSERT INTO Employee(LastName, FirstName, Address, Phone, POSITION_ID, HireDate, Age, Email)
  45. VALUES('Land', 'Angela', '4772 Richards Avenue
  46. Los Banos, CA 93635', '209-826-8641', 5,  '2007-07-13', 21, 'AngelLand@herbiesballonland.com');
  47.  
  48. INSERT INTO Employee(LastName, FirstName, Address, Phone, POSITION_ID, HireDate, Age, Email)
  49. VALUES('Jones', 'Katherine', '3409 Norma Lane
  50. Shreveport, LA 71101', '318-588-7908', 2,  '2009-07-13', 23, 'KatieJones@herbiesballonland.com');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement