select specified column as alpha-numeric (no special characters) using regex
SELECT regexp_replace(column_name,'[^a-zA-Z0-9]') FROM table_name;