Possible to have double quotes in a column alias in a SQL projection? Long story involving Apex, Anychart v5 and how Apex names data serie in XML generated for multiple Y axis.
This problem can be easily solved if I can add a double quote into a column alias. E.g.
select
some_col as "COL1"" param1=123"
from dual
No comment about Apex using column labels for generating XML tag name-values... {noformat} ;-) {noformat}
Of course, the SQL parser does not like the above format at all.
Had a look at the SQL Reference guide and it does not say much in this regard. Seems like there's no workaround - correct?