regex - Oracle SQL - REGEXP_LIKE contains characters other than a-z or A-Z -
i create query select records contain characters not a-z or a-z
so this
select * mytable regexp_like(column_1, '![a-z] [a-z]')
the ^
negates character class:
select * mytable regexp_like(column_1, '[^a-za-z]')
Comments
Post a Comment