TO_NUMBER
Convert a string to a number. This Oracle-compatible function parses a string using a specified format and returns a numeric value.
Last updated
Was this helpful?
Was this helpful?
SELECT TO_NUMBER('100.00');
+---------------------+
| TO_NUMBER('100.00') |
+---------------------+
| 100 |
+---------------------+