Skip to content
Open
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: 1 addition & 1 deletion Intermediate - Subqueries.sql
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ WHERE employee_id IN
FROM employee_salary
WHERE dept_id = 1);

#So we are using that subquery in the where statement and if we just highlight the subwuery and run it it's basically a list we are selecting from in the outer query
#So we are using that subquery in the where statement and if we just highlight the subquery and run it it's basically a list we are selecting from in the outer query

SELECT *
FROM employee_demographics
Expand Down