Answers for "how to remove a particular digit from a number in sql"

SQL
0

sql remove non numeric characters

SELECT REGEXP_REPLACE( fieldname, '[^[:digit:]]', '' ) AS newfieldname FROM tablename
Posted by: Guest on November-06-2020

Code answers related to "how to remove a particular digit from a number in sql"

Code answers related to "SQL"

Browse Popular Code Answers by Language