SQL Entfernen Sie nicht numerische Zeichen

SELECT REGEXP_REPLACE( fieldname, '[^[:digit:]]', '' ) AS newfieldname FROM tablename
Yoshkinawa