Last updated 3 months ago
The NUMERIC function is a system function that casts a string value into a numeric value.
This function is fully supported in .
select "numeric"(VARCHAR);
SELECT "numeric"('2024');
2024
Output Code:
SELECT TO_NUMERIC('2024');
There are no known issues.