Advertisement
Guest User

Untitled

a guest
Aug 16th, 2017
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. SELECT FROM t1 INNER JOIN t2 INNER JOIN t3 ON t1.c = t2.c = t3.c
  2.  
  3. SELECT FROM t1 INNER JOIN t2 USING (c) INNER JOIN t3 USING (c)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement