Created
April 12, 2015 16:53
-
-
Save LocalCommit/22c6106666e752383107 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 joke.id, joketext, email, category.name, author.name | |
FROM joke | |
INNER JOIN author ON authorid = author.id | |
INNER JOIN jokecategory ON joke.id = jokeid | |
INNER JOIN category ON categoryid = category.id |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment