【发布时间】:2023-02-07 16:34:02
【问题描述】:
I need to find the way to list all the characters used in the column in order to narrow down the "Approved" values within the insert template we are creating... the idea is to allow all letters (only standard) without any dialect / country specific ones.
trying something like this... but need to have a list of the characters left over... like "$%()* etc.
SELECT * FROM mytable WHERE REGEXP_LIKE(column_1,^[a-zA-Z0-9-]+$)
-
I googled "oracle find special characters in string" and I really got a lot of hits. Did you go through those ? What didn't work ? Can you provided a bit of sample data with the expected behaviour ?