I have a query which uses a reserved keyword of oracle as a column name.
SELECT * FROM ABC.“COMMENT” – This is how we write a query in oracle if we have a reserved word as a column name (hope m correct here because this gives me a desired output in oracle).
Now if we use the same query in Uipath this should bw written as
“SELECT * FROM ABC.“COMMENT”” – an additional double quotes which is where i am getting an error and unable to porceed with my implementation.
Please advice on how to porceed with this situation. Note that i cannot change my column name now from reserved word to other since it has many dependencies on other databases.
Thanks in advance.