You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
WHERE # ,where' is used just to show that we can apply conditions with joins.
e.last_name = 'markovitch'# in this case, it will return records with 'last name' values which are not in other table, thus can be used as a filtering method
ORDER BY d.dept_no DESC;
# EXERCISE-2
SELECT
m.dept_no, m.emp_no, d.dept_name
FROM
dept_manager m
LEFT OUTER JOIN #'LEFT JOIN' can be written as 'LEFT OUTER JOIN'