Collections:
Text Literals in Oracle
How To Write Text Literals in Oracle?
✍: FYIcenter.com
There are several ways to write text literals as shown in the following samples:
SELECT 'FYICenter.com' FROM DUAL -- The most common format FYICenter.com SELECT 'It''s Sunday!' FROM DUAL -- Single quote escaped It's Sunday! SELECT N'Allo, C''est moi.' FROM DUAL -- National chars Allo, C'est moi. SELECT Q'/It's Sunday!/' FROM DUAL -- Your own delimiter It's Sunday!
2020-04-14, 2498🔥, 0💬
Popular Posts:
What Privilege Is Needed for a User to Delete Rows from Tables in Another Schema in Oracle? For a us...
How to set the current database in SQL Server? Once you are connected to the SQL Server, you should ...
How to set database to be READ_ONLY in SQL Server? Databases in SQL Server have two update options: ...
How To View Data Files in the Current Database in Oracle? If you want to get a list of all tablespac...
What Happens to Your Transactions When ERROR 1205 Occurred in MySQL? If your transaction receives th...