Last active
April 13, 2017 20:35
-
-
Save nicysneiros/78706105daa0642dfe76c59196e05d26 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 u.name, u.gender, u.age | |
FROM User u, Likes c, Page p | |
WHERE p.name = ”The Beatles” | |
AND p.ID = c.ID_Page | |
AND c.ID_User = u.ID |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment