Guest User

Untitled

a guest
Dec 16th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. -- step 1
  2. FROM (
  3. x
  4. JOIN LEFT y
  5. ON x.b = y.b
  6. )
  7.  
  8. -- step 2
  9. FROM (
  10. y
  11. JOIN LEFT z
  12. ON y.c = z.c
  13. )
  14.  
  15. -- combined ?
  16. FROM (
  17. -- step 1
  18. (
  19. x
  20. JOIN LEFT y
  21. ON x.b = y.b
  22. )
  23. -- step 2
  24. JOIN LEFT z
  25. ON ??.b = z.b
  26. )
Add Comment
Please, Sign In to add comment