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, 7015🔥, 0💬
Popular Posts:
What is sqlservr.exe - Process - SQL Server (SQLEX?PRESS) in SQL Server? Process sqlservr.exe is the...
How AdventureWorksLT tables are related in SQL Server? There are 12 user tables defined in Adventure...
Where to find Oracle database server tutorials? Here is a collection of tutorials, tips and FAQs for...
What Happens If the Imported Table Already Exists in Oracle? If the import process tries to import a...
How To Connect ASP Pages to Oracle Servers in Oracle? If you are running Windows IIS Web server and ...