i can't find solution on internet of that problem, everything what i got is connected with wildcard, and i don't wanna to use wildcard in my case
i want to find all tables that have ending '_N' so im trying to execute something like that
select * from dba_tables v
where v.table_name like '%_N';
but '' wildcard means that search all tables with name [can be everything][need to be some character]N i just want to use that '' i want to have all tables with '_N' ending, so for example tables like 'EXAMPLE_N' 'HELP_ME_N'.
How can i not use '_' wildcard?