Created
May 5, 2010 19:11
-
-
Save oleander/391279 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 * | |
FROM `channels` | |
LEFT OUTER JOIN `gigs` ON `gigs`.`channel_id` = `channels`.`id` | |
LEFT OUTER JOIN `songs` ON `songs`.`id` = `gigs`.`song_id` | |
GROUP BY channels.id ORDER BY channels.id |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment