Created
May 30, 2014 04:06
-
-
Save dmulvi/38ed6cada879f51b366e to your computer and use it in GitHub Desktop.
LEFT OUTER JOIN example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT f.id, f.screen_name, l.location | |
FROM followers AS f | |
LEFT OUTER JOIN location AS l | |
ON l.id = f.id | |
LIMIT 100; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment