Created
November 29, 2017 08:31
-
-
Save dclarke-modus/c81200c010905843ef2989e41d9cc277 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
table student table department | |
id, name, age id, name, student_id | |
1, dean, 10 1, Arts, 1 | |
2, tah , 10 | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
What would be outputted for:
select * from students INNER JOIN department on student.id = department.student_id