Hello Gurus,
I am having issue with Oracle reserved words, one of the application is using table which has NUMBER as column. I am not able to query that table matching database with NUMBER column.
HERE
select a.*
from DOC a , FOLDER B
where a.NUMBER= B.INCIDENT_ID
and b.open = 'Closed';
I tried double quotes (“”) and sigle quotes too, none of them worked.
Any help greatly appreciated. Thanks.