Mysql
 sql >> Database >  >> RDS >> Mysql

MySQL WHERE NOT IN estremamente lento

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.