sql remove non numeric characters

Solutions on MaxInterview for sql remove non numeric characters by the best coders in the world

showing results for - "sql remove non numeric characters"
Juan Pablo
22 Nov 2019
1SELECT REGEXP_REPLACE( fieldname, '[^[:digit:]]', '' ) AS newfieldname FROM tablename