Advertisement
grazh

Staff_Shifts

Apr 27th, 2020
851
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. INSERT INTO staff_shifts(staff_id, shift_id) VALUES('1', '1');
  2. INSERT INTO staff_shifts(staff_id, shift_id) VALUES('1', '2');
  3. INSERT INTO staff_shifts(staff_id, shift_id) VALUES('2', '1');
  4. INSERT INTO staff_shifts(staff_id, shift_id) VALUES('2', '2');
  5. INSERT INTO staff_shifts(staff_id, shift_id) VALUES('3', '4');
  6. INSERT INTO staff_shifts(staff_id, shift_id) VALUES('3', '1');
  7. INSERT INTO staff_shifts(staff_id, shift_id) VALUES('4', '4');
  8. INSERT INTO staff_shifts(staff_id, shift_id) VALUES('4', '3');
  9. INSERT INTO staff_shifts(staff_id, shift_id) VALUES('5', '5');
  10. INSERT INTO staff_shifts(staff_id, shift_id) VALUES('5', '4');
  11. INSERT INTO staff_shifts(staff_id, shift_id) VALUES('6', '5');
  12. INSERT INTO staff_shifts(staff_id, shift_id) VALUES('6', '4');
  13. INSERT INTO staff_shifts(staff_id, shift_id) VALUES('7', '5');
  14. INSERT INTO staff_shifts(staff_id, shift_id) VALUES('7', '1');
  15. INSERT INTO staff_shifts(staff_id, shift_id) VALUES('8', '5');
  16. INSERT INTO staff_shifts(staff_id, shift_id) VALUES('8', '1');
  17. INSERT INTO staff_shifts(staff_id, shift_id) VALUES('9', '8');
  18. INSERT INTO staff_shifts(staff_id, shift_id) VALUES('9', '9');
  19. INSERT INTO staff_shifts(staff_id, shift_id) VALUES('10', '9');
  20. INSERT INTO staff_shifts(staff_id, shift_id) VALUES('10', '8');
  21. INSERT INTO staff_shifts(staff_id, shift_id) VALUES('11', '10');
  22. INSERT INTO staff_shifts(staff_id, shift_id) VALUES('11', '5');
  23. INSERT INTO staff_shifts(staff_id, shift_id) VALUES('12', '10');
  24. INSERT INTO staff_shifts(staff_id, shift_id) VALUES('12', '7');
  25. INSERT INTO staff_shifts(staff_id, shift_id) VALUES('13', '1');
  26. INSERT INTO staff_shifts(staff_id, shift_id) VALUES('13', '7');
  27. INSERT INTO staff_shifts(staff_id, shift_id) VALUES('14', '1');
  28. INSERT INTO staff_shifts(staff_id, shift_id) VALUES('14', '6');
  29. INSERT INTO staff_shifts(staff_id, shift_id) VALUES('15', '2');
  30. INSERT INTO staff_shifts(staff_id, shift_id) VALUES('15', '10');
  31. INSERT INTO staff_shifts(staff_id, shift_id) VALUES('16', '2');
  32. INSERT INTO staff_shifts(staff_id, shift_id) VALUES('16', '10');
  33. INSERT INTO staff_shifts(staff_id, shift_id) VALUES('17', '6');
  34. INSERT INTO staff_shifts(staff_id, shift_id) VALUES('17', '7');
  35. INSERT INTO staff_shifts(staff_id, shift_id) VALUES('18', '6');
  36. INSERT INTO staff_shifts(staff_id, shift_id) VALUES('18', '7');
  37. INSERT INTO staff_shifts(staff_id, shift_id) VALUES('19', '4');
  38. INSERT INTO staff_shifts(staff_id, shift_id) VALUES('19', '1');
  39. INSERT INTO staff_shifts(staff_id, shift_id) VALUES('20', '4');
  40. INSERT INTO staff_shifts(staff_id, shift_id) VALUES('20', '1');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement