I have define for example below in my With clause in query:
'.+d\$'
as sec_level_pattern
from dual
And now i can see below condition in select query:
not regexp_like(name,sec_level_pattern)
name
is column from my rd_tst
table.
What does the condition regexp_like
checks here ? I have seen few question about regexp_like
but did not understand what actually will check in my use case here.
Your sample data seems to have the format:
.GTX
; thenYou want a regular expression that matches the same things such as:
Which for your sample data:
Returns all the names:
db<>fiddle here