Advertisement
Guest User

Untitled

a guest
Nov 19th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.31 KB | None | 0 0
  1. INSERT INTO `Doctor` (`DoctorId`, `ProfileId`, `AccountId`, `Qualifications`, `ServiceStatus`, `ServiceDescription`, `CreatedUser`, `CreatedDate`, `UpdatedUser`, `UpdatedDate`, `Active`, `PracticeId`, `DoctorPracticeId`, `EmailVisibility`)
  2. VALUES
  3. (49, 336, 300, 'OD', NULL, NULL, 1, '2017-04-13 19:19:27', 1, '2017-04-13 19:19:27', 'Y', 1072, 48, 'N');
  4.  
  5. INSERT INTO `Colleague` (`collegueId`, `primaryDoctorId`, `ColleagueDocId`, `Operation`, `createdUser`, `createdDate`, `updatedUser`, `updatedDate`, `Active`, `operationPerformedBy`)
  6. VALUES
  7. (3, 49, 50, 'ACCEPT', 1, '2017-04-18 14:14:13', '1', '2017-04-18 14:14:13', 'Y', 49),
  8. (10, 49, 57, 'ACCEPT', 1, '2017-08-15 18:41:46', '1', '2017-08-15 18:41:46', 'Y', 49);
  9.  
  10. INSERT INTO `Colleague` (`collegueId`, `primaryDoctorId`, `ColleagueDocId`, `Operation`, `createdUser`, `createdDate`, `updatedUser`, `updatedDate`, `Active`, `operationPerformedBy`)
  11. VALUES
  12. (2, 46, 49, 'ACCEPT', 1, '2017-09-14 09:33:19', '1', '2017-09-14 09:33:19', 'Y', 46);
  13.  
  14. INSERT INTO `Clinics` (`ClinicId`, `clinicName`, `addressId`, `createdUser`, `createdDate`, `updatedUser`, `updatedDate`, `Active`, `ClinicType`, `OfficePhone`, `EmergencyPhone`, `AccountId`)
  15. VALUES
  16. (29, 'Crossroads', 29, 1, '2017-04-13 19:15:34', 1, '2017-04-13 19:15:34', 'Y', 'Optometry', 9192338500, 9192338500, 299);
  17.  
  18.  
  19. INSERT INTO `StaffDetails` (`StaffDetailsId`, `ProfileId`, `AccountId`, `Comments`, `Active`, `createdUser`, `createdDate`, `updatedUser`, `updatedDate`, `ClinicId`)
  20. VALUES
  21. (6, 335, 299, NULL, 'Y', 1, '2017-04-13 19:15:34', NULL, NULL, 29),
  22. (7, 336, 300, NULL, 'Y', 1, '2017-04-13 19:16:50', NULL, NULL, 29),
  23. (8, 337, 301, NULL, 'Y', 1, '2017-04-13 19:19:09', NULL, NULL, 29),
  24. (9, 335, 302, NULL, 'Y', 1, '2017-04-13 19:19:57', 1, '2017-04-13 19:19:57', 29);
  25.  
  26.  
  27. INSERT INTO `Patient` (`PatientId`, `ProfileId`, `AccountId`, `MrnNumber`, `MedicalDescription`, `CreatedUser`, `CreatedDate`, `UpdatedUser`, `UpdatedDate`, `Active`, `ClinicId`)
  28. VALUES
  29. (120, 347, 317, '1234567', '', 1, '2017-04-19 14:12:56', 1, '2017-04-19 14:12:56', 'Y', 29);
  30.  
  31.  
  32. INSERT INTO `DoctorPractice` (`DoctorPracticeId`, `createdUser`, `createdDate`, `updatedUser`, `updatedDate`, `DoctorId`, `ClinicId`, `Active`)
  33. VALUES
  34. (48, 1, '2017-04-13 19:16:50', NULL, NULL, 49, 29, 'Y'),
  35. (49, 1, '2017-04-13 19:19:09', NULL, NULL, 50, 29, 'Y');
  36.  
  37. INSERT INTO `DoctorPracticePatientDetails` (`DocPracticePatientDetailsId`, `DocPracticeId`, `PatientId`, `CreatedUser`, `CreatedDate`, `UpdatedUser`, `UpdatedDate`, `Active`)
  38. VALUES
  39. (9, 49, 120, 1, '2017-04-19 14:12:58', 1, '2017-04-19 14:12:58', 'Y');
  40.  
  41. INSERT INTO `PatientImageMap` (`PatientImageMapId`, `PatientId`, `DoctorPracticeId`, `ClinicId`, `Active`, `createdDate`, `createdUser`, `updatedDate`, `updatedUser`)
  42. VALUES
  43. (44, 120, 49, 29, 'Y', '2017-04-19 14:13:19', 1, NULL, NULL);
  44.  
  45. INSERT INTO `PatientImage` (`PatientImageId`, `PatientImageMapId`, `Name`, `ImageName`, `Description`, `Location`, `CreatedDate`, `CreatedUser`, `UpdatedUser`, `UpdatedDate`, `Active`)
  46. VALUES
  47. (214, 44, '1492629198cx.jpeg', 'images', '3+ PCO OS', '/data/BackendImages/29/120/1492629198cx.jpeg', '2017-04-19 14:13:19', 1, 1, '2017-08-24 13:10:56', 'Y');
  48.  
  49. INSERT INTO `ImageUploads` (`Id`, `DoctorPracticeId`, `ClinicId`, `Count`, `CreateDate`, `IsBilled`)
  50. VALUES
  51. (14, 49, 29, 1, '2017-04-19 14:13:19', 'N');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement