usa LEFT JOIN
SELECT a.*
FROM item a
LEFT JOIN table_excluded_item b
ON a.orderId = b.orderId
WHERE b.orderId IS NULL
assicurati che orderId
da entrambe le tabelle è stato indicizzato.
usa LEFT JOIN
SELECT a.*
FROM item a
LEFT JOIN table_excluded_item b
ON a.orderId = b.orderId
WHERE b.orderId IS NULL
assicurati che orderId
da entrambe le tabelle è stato indicizzato.