Oracle
 sql >> Database >  >> RDS >> Oracle

Oracle ottimizza OR + IN su OR + EXISTS che è molto lento

Potresti trasformare la tua sottoquery in un join:

SELECT * 
FROM application_log log
    LEFT JOIN transaction transaction ON log.tag_value=transaction.id AND transaction.sale_id = 'xxx'
WHERE log.tag_value = 'xxx' OR transaction.id IS NOT NULL
ORDER BY log.log_date ASC;