Let's say there are 3 tables:
How can I show which CustomerId did not make an order for particular SupplierId
For example: SupplierId 2 did not get orders from CustomerId 1 and 5
So far my idea is to create a Table of all possible combinations of CustomerId/SupplierId and rows that have a match in the Orders table. Is there a better way?