I have two tables. ISBN is unique Table1 (orders has 8829 rows). table2 (best_sellers) has top 100 best sellers.
Table1 (Orders) Table2(best_Sellers)
ID ID
(pk)ISBN (pk)ISBN
Price Price
I'm trying to find out which ISBN's in the best_sellers table have never had an order.
Many of the ISBN's in the order table are not in the best seller table.
End result I'm trying to produce a list of best sellers that have never been ordered.
Thanks
Table1 (Orders) Table2(best_Sellers)
ID ID
(pk)ISBN (pk)ISBN
Price Price
I'm trying to find out which ISBN's in the best_sellers table have never had an order.
Many of the ISBN's in the order table are not in the best seller table.
End result I'm trying to produce a list of best sellers that have never been ordered.
Thanks