We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Here's an example:
select 'hello' || u'\000a' ||'world' as hello_world from dual;
which produces this result:
HELLO_WORLD ----------- hello world
This syntax is not documented in the SQL Language Reference 23ai. However, it is mentioned in Oracle Database Globalization Support Guide for Oracle Database 23ai in another context.
The workaround is to use chr(10) or a string containing the new line character.
chr(10)
The text was updated successfully, but these errors were encountered:
rolandstirnimann
No branches or pull requests
Here's an example:
which produces this result:
This syntax is not documented in the SQL Language Reference 23ai. However, it is mentioned in Oracle Database Globalization Support Guide for Oracle Database 23ai in another context.
The workaround is to use
chr(10)
or a string containing the new line character.The text was updated successfully, but these errors were encountered: