I have to find sku's (identifier) that are not listed in our catalog. Querys is simple
SELECT sku
FROM stock
WHERE sku NOT IN (SELECT sku FROM catalog)
but there might be also missing sku's in table sale
SELECT DISTINCT sku
FROM sale
WHERE sku NOT IN (SELECT sku FROM catalog)
I would like to get a single result from mysql, will all missing skus. To connect these two querys with Union will not work here. Thank you & Best Regards