Advertisement
Guest User

Untitled

a guest
Jan 19th, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. id, name, email, expertises
  2. - 1, Joe, joe@joe.com, 2
  3.  
  4. id, name
  5. - 1, Employee rights
  6. - 2, Information safety
  7.  
  8. id_local, id_foreign
  9. - 1, 1
  10. - 1, 2
  11.  
  12. INSERT INTO `Lawyer`
  13. ( `name`, `email`,`expertises`)
  14. SELECT `name`, `test@test.test`,`expertises`
  15. FROM Lawyer
  16.  
  17. id, name, email, expertises
  18. - 1, Joe, joe@joe.com, 2
  19. - 2, Joe, test@test.test, 2
  20.  
  21. id_local, id_foreign, sorting
  22. - 1, 1
  23. - 1, 2
  24. - 2, 1
  25. - 2, 2
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement