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

Popular posts from this blog

delphi - How to convert bitmaps to video? -

jasper reports - Fixed header in Excel using JasperReports -

python - ('The SQL contains 0 parameter markers, but 50 parameters were supplied', 'HY000') or TypeError: 'tuple' object is not callable -