Collections:
Convert Character Strings to Numbers in Oracle
How To Convert Characters to Numbers in Oracle?
✍: FYIcenter.com
You can convert characters to numbers by using the TO_NUMBER() function as shown in the following examples:
SELECT TO_NUMBER('4123.4570') FROM DUAL
4123.457
SELECT TO_NUMBER(' $4,123.46','$9,999,999.99') FROM DUAL
4123.46
SELECT TO_NUMBER(' -4.12E+03') FROM DUAL
-4120
⇒ Convert Dates to Character Strings in Oracle
⇐ Convert Numbers to Character Strings in Oracle
2020-03-25, 7595🔥, 0💬
Popular Posts:
How to put statements into a statement block in SQL Server Transact-SQL? You can put statements into...
What are binary literals supported in SQL Server Transact-SQL? Binary literals in Transact-SQL are s...
How To Connect the Oracle Server as SYSDBA in Oracle? This is Step 4. The best way to connect to the...
What are single-byte character string data types supported in SQL Server Transact-SQL? Single-byte c...
How to download and install the scaled-down database AdventureWorksLT in SQL Server? If you want to ...