Created
April 18, 2012 10:28
-
-
Save Tocacar/2412688 to your computer and use it in GitHub Desktop.
SQL query
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 | |
p.id | |
FROM | |
project_licence p | |
INNER JOIN | |
lab l | |
ON | |
p.lab_id = l.id | |
RIGHT OUTER JOIN | |
lab_user lu | |
ON | |
lu.lab_id = l.id | |
WHERE | |
lu.user_id = 63 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment