I would like to find all special characters which are used in 'mytable' > column 'name'
SELECT name
FROM mytable
WHERE name regexp '[^a-zA-Z0-9]'
But I would like to receive results which will not show whole 'name' data, but only this special character used in the column 'name'. How can I do it?