Advertisement
Guest User

Untitled

a guest
Apr 23rd, 2014
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.59 KB | None | 0 0
  1. Reference Table with temporary ids
  2. ╔════╦════════════╗
  3. ║ id ║ Name ║
  4. ╠════╬════════════╣
  5. ║ -1 ║ Blubb ║
  6. ║ -3 ║ Bla ║
  7. ║ -7 ║ Plisch ║
  8. ╚════╩════════════╝
  9. ^
  10. ╔════╦════════╦═════════════╗
  11. ║ id ║ ref_id ║ Name ║
  12. ╠════╬════════╬═════════════╣
  13. ║ 1 ║ -1 ║ Refs Blubb ║
  14. ║ 2 ║ -3 ║ Refs Bla ║
  15. ║ 3 ║ -7 ║ Refs Plisch ║
  16. ╚════╩════════╩═════════════╝
  17.  
  18. Reference Table with one valid and two temporary ids
  19. ╔════╦════════════╗
  20. ║ id ║ Name ║
  21. ╠════╬════════════╣
  22. ║ 42 ║ Blubb ║ <- -1 changed to 42 (bubbles up to depending tables)
  23. ║ -3 ║ Bla ║
  24. ║ -7 ║ Plisch ║
  25. ╚════╩════════════╝
  26. ^
  27. ╔════╦════════╦═════════════╗
  28. ║ id ║ ref_id ║ Name ║
  29. ╠════╬════════╬═════════════╣
  30. ║ 1 ║ 42 ║ Refs Blubb ║
  31. ║ 2 ║ -3 ║ Refs Bla ║
  32. ║ 3 ║ -7 ║ Refs Plisch ║
  33. ╚════╩════════╩═════════════╝
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement