Collections:
Convert Numbers to Character Strings in Oracle
How To Convert Numbers to Character Strings in Oracle?
✍: FYIcenter.com
You can convert numeric values to characters by using the TO_CHAR() function as shown in the following examples:
SELECT TO_CHAR(4123.4570) FROM DUAL
123.457
SELECT TO_CHAR(4123.457, '$9,999,999.99') FROM DUAL
$4,123.46
SELECT TO_CHAR(-4123.457, '9999999.99EEEE') FROM DUAL
-4.12E+03
⇒ Convert Character Strings to Numbers in Oracle
⇐ Date and Time Interval Literals in Oracle
2020-03-25, 3266🔥, 0💬
Popular Posts:
How To Divide Query Output into Multiple Groups with the GROUP BY Clause in SQL Server? Sometimes, y...
How to print value on console in SQL Server Transact-SQL? How to use the PRINT statements? In Transa...
How To Install PHP on Windows in MySQL? The best way to download and install PHP on Windows systems ...
Where to find tutorials to answer some frequently asked questions on Microsoft SQL Server Transact-S...
How to change the data type of an existing column with "ALTER TABLE" statements in SQL Server? Somet...