I have two simple queries
SELECT Make, Color FROM (VALUES('Audi','Red'),('Audi','Blue'),('Audi','Black'),('BMW','Black'),('BMW','Yellow')) AS Cars(Make, Color)
SELECT Color FROM (VALUES('Red'),('Blue'),('Black'),('Yellow'),('White'),('Silver'),('Brown')) AS Colors(Color)
SQL1 Returns the Colors available from each Car Maker
SQL2 Returns the Colors of cars customers wishing to buy
I want to list the colors that are not available from each Car Maker.
eg. Audi White, Audi Yellow ...
Please help m with the TSQL query.
UPDATE: This is not a duplicate question. I have already tried that answer but I'm not getting the results I'm expecting. I wish people read the question before down voting or marking it as duplicate.