Resolved: Cross Join
- What is the significance of the <> operator? { WHERE d.ddept_no <> dm.dept_no }
- In the last example, I am not clear with the usage of CROSS JOIN with a JOIN.
1 answers ( 0 marked as helpful)
Hi Archisman!
Thanks for reaching out.
Best,
Martin
- <> means inequality.
- You can follow the logic of joining the given tables sequentially, in the provided order. In other words, you need to first imagine what cross-joining departments and dept_manager in this example. Then, apply an inner join to the obtained output and the employees table.
Best,
Martin