Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .idea/.gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 9 additions & 0 deletions .idea/SQL.LetsGetTogether.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions answers/exercise1.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
SELECT * FROM Enrolments.SudentID LEFT JOIN Students.StudentID WHERE Enrolments.SudentID = Students.StudentID;
1 change: 1 addition & 0 deletions answers/exercise2.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
SELECT * FROM Enrolments.StudentID LEFT JOIN Students.StudentID ON Enrolments.StudentID = Students.StudentID;
1 change: 1 addition & 0 deletions answers/exercise3.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
SELECT * FROM Enrolments RIGHT JOIN Students ON Enrolments.StudentID = Students.StudentID;
1 change: 1 addition & 0 deletions answers/exercise4.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
SELECT Country COUNT(*) AS Num_Students FROM Students GROUP BY Country;
1 change: 1 addition & 0 deletions answers/exercise5.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
SELECT Country COUNT(*) AS Num_Students FROM Students GROUP BY Country HAVING COUNT(*) DESC;
1 change: 1 addition & 0 deletions answers/exercise6.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
SELECT Country COUNT(*)AS num_Students FROM Students GROUP BY Country ORDER BY COUNT(*) DESC WHERE COUNT (*) > 10;