In case you have your own slow SQL query, you can optimize it automatically here.
For the query above, the following recommendations will be helpful as part of the SQL tuning process.
You'll find 3 sections below:
ALTER TABLE `CTR_QWE` ADD INDEX `ctr_qwe_idx_status` (`STATUS`);
SELECT
CTR_QWE.STATUS
FROM
CTR_QWE
WHERE
CTR_QWE.STATUS IN (
'N', 'P'
)
AND CTR_QWE.EXIT_DATE >= TRUNC(CTR_QWE.SYSDATE - 3)
AND CTR_QWE.EXIT_DATE < TRUNC(CTR_QWE.SYSDATE)