Advertisement
Guest User

Untitled

a guest
Jul 28th, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.75 KB | None | 0 0
  1. INSERT INTO Patient
  2. (PatientId, PatName, DOB,
  3. Breed, OwnerId, Specialty)
  4. VALUES (12310,'Calvin',1998-12-12,'Python',1110,'Snake')
  5.  
  6.  
  7. INSERT INTO Owner
  8. (Address, Name, OwnerId)
  9. VALUES ('1002 Mortimter Ave.', 'Rick',1110)
  10.  
  11. Insert into Specialty
  12. (ConsultChrg,Specialty)
  13. Values (80, 'Snake')
  14.  
  15. INSERT INTO Appointment
  16. (PatientID, Vet_ID, Reason, Date, BilledAmt)
  17. VALUES (12310, 2220,'Check Up','2011-02-12',2000)
  18.  
  19. INSTER INTO VET
  20. (vet_Id, VetName, BaseSal, StartDate, Specialty)
  21. VALUES (2220,'Star Bucks', 40000, 2001-02-31,'Snake')
  22.  
  23.  
  24. --
  25.  
  26. INSERT INTO Patient
  27. (PatientId, PatName, DOB,
  28. Breed, OwnerId, Specialty)
  29. VALUES (12307,'Josh',1991-07-07,'Husky',1111,'Dog')
  30.  
  31.  
  32. INSERT INTO Owner
  33. (Address, Name, OwnerId)
  34. VALUES ('07 Touge Rd.', 'Bosh',1111)
  35.  
  36. Insert into Specialty
  37. (ConsultChrg,Specialty)
  38. Values (30, 'Dog')
  39.  
  40. INSERT INTO Appointment
  41. (PatientID, Vet_ID, Reason, Date, BilledAmt)
  42. VALUES (12307, 2221,'Cold','2010-08-11',230)
  43.  
  44. INSTER INTO VET
  45. (vet_ID, VetName, BaseSal, StartDate, Specialty)
  46. VALUES (2221,'James Bond', 200000, 2005-02-12,'Dog')
  47.  
  48. --
  49.  
  50. INSERT INTO Patient
  51. (PatientId, PatName, DOB,
  52. Breed, OwnerId, Specialty)
  53. VALUES (12308,'Jade',1994-02-03,'Poodle',1112,'Dog')
  54.  
  55.  
  56. INSERT INTO Owner
  57. (Address, Name, OwnerId)
  58. VALUES ('1941 Golden Ave.', 'Lancey',1112)
  59.  
  60. Insert into Specialty
  61. (ConsultChrg,Specialty)
  62. Values (30, 'Dog')
  63.  
  64. INSERT INTO Appointment
  65. (PatientID, Vet_ID, Reason, Date, BilledAmt)
  66. VALUES (12308, 2222,'Check up','2011-09-01',300)
  67.  
  68. INSTER INTO VET
  69. (vet_Id, VetName, BaseSal, StartDate, Specialty)
  70. VALUES ('2222','Moutain Dew', 80000, 2009-01-02,'Dog')
  71.  
  72.  
  73.  
  74. --
  75.  
  76. INSERT INTO Patient
  77. (PatientId, PatName, DOB,
  78. Breed, OwnerId, Specialty)
  79. VALUES (12309,'Tash',1996-04-04,'Korat',1113,'Cat')
  80.  
  81.  
  82. INSERT INTO Owner
  83. (Address, Name, OwnerId)
  84. VALUES ('302 Lumsden Ave.', 'Micheal',1113)
  85.  
  86. Insert into Specialty
  87. (ConsultChrg,Specialty)
  88. Values (90, 'Cat')
  89.  
  90. INSERT INTO Appointment
  91. (PatientID, Vet_ID, Reason, Date, BilledAmt)
  92. VALUES (12309, 2223','Check Up','2011-02-22',200)
  93.  
  94. INSTER INTO VET
  95. (vet_Id, VetName, BaseSal, StartDate, Specialty)
  96. VALUES ('23403','Sugar Crisp', 100000, 2005-06-30,'Cat')
  97.  
  98. --
  99.  
  100.  
  101. INSERT INTO Patient
  102. (PatientId, PatName, DOB,
  103. Breed, OwnerId, Specialty)
  104. VALUES (12311,'Dominic',1996-01-11,'Persian',1114,'Cat')
  105.  
  106.  
  107. INSERT INTO Owner
  108. (Address, Name, OwnerId)
  109. VALUES ('300 Spartian Ave.', 'Apple',1114)
  110.  
  111. Insert into Specialty
  112. (ConsultChrg,Specialty)
  113. Values (90, 'Cat')
  114.  
  115. INSERT INTO Appointment
  116. (PatientID, Vet_ID, Reason, Date, BilledAmt)
  117. VALUES (12311, 2224,'Check up','2011-04-08',300)
  118.  
  119. INSTER INTO VET
  120. (vet_Id, VetName, BaseSal, StartDate, Specialty)
  121. VALUES (2224,'Mike Hunt', 65000, 2003-12-23,'Cat')
  122.  
  123.  
  124.  
  125. --
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement