this query produces a list of all the tables that begin with V$.
select TABLE_NAME
from DICTIONARY
where TABLE_NAME LIKE 'V$%';
how do I add the remaning prefixes to this query? I have tried parenthesis, using AND, ||, OR. I cannot find the answer to this in googling although I have gotten this far in searching, I believe the % I learned from a answer to a diff question.
If not for the single query requirement I would just make a script that runs the query three times once for each prefix which works great, I just cant figure out how to consolodate it into one query. thanks.