Below is the query I wrote, wanted to know if i can improve the performance further.Can any one please help me?
DELETE FROM GLOBAL_TEMP
WHERE EXISTS (
SELECT GLOBAL_TEMP.ASSET_ID
FROM TEMP AEE
WHERE GLOBAL_TEMP.ASSET_ID = AEE.ID_ASSET
AND GLOBAL_TEMP.TYPE = 'abcdef'
AND AEE.id_temp_notation
IN (SELECT ID FROM TEMP2 WHERE IS_DISPLAYABLE = 'N')
);