How to exclude substring "TEMP" but include string "TEMPLATE" in regular expression in plsql.
I am trying to use condition like below but all are getting excluded
code:
SELECT TABLE_NAME
from all_tables
where not regexp_like( table_name, '_(TEMP)')
and regexp_like( table_name, 'TEMPLATE');
Do you really need regular expressions? How about
If it isn't that simple (according to your comment), then consider something like this: