I have 2 tables:
Operator (id, name, product_id)
Product (id)
Operator table contains this data:
| 1 | Op1 | Pr1 |
| 2 | Op2 | Pr2 |
Product table:
| Pr1 |
| Pr2 |
| Pr3 |
And what i need is to show the products that Op1 does NOT have, and products that Op2 does NOT have:
| Op1 | Pr2 |
| Op1 | Pr3 |
| Op2 | Pr1 |
| Op2 | Pr3 |
Could you please advise an efficient way of solving this task. I have 1 solution with building cross join, but i think there should be a right and easier way.