Based on SQL Server, I have multiple rows with multiple columns. Each row contains a product-configuration which is different in at least one column. Now I need to know which are the not existing configurations. The three columns are only an example to make it easier to understand.
An example of data:
Product | Size | Color |
---|---|---|
Shirt | S | Red |
Shirt | S | Blue |
Shirt | S | Black |
Shirt | M | Red |
Shirt | M | Blue |
Shirt | L | Yellow |
As a result, those configurations are missing:
Product | Size | Color |
---|---|---|
Shirt | S | Yellow |
Shirt | M | Black |
Shirt | M | Yellow |
Shirt | L | Red |
Shirt | L | Blue |
Shirt | L | Black |