Hi all,
I have a db called "core_set" which has a bunch of tables in it.
Basically I want to search for a table named "x" or "xx" or "xxx" inside db "core_set". I am scripting using PHP, but I guess this is purely a (My)SQL question.
I was hoping for something like
select *from db(core_set) where tables_in_core_set like '%x%';
right now 'show tables' returns me the names of tables, but I cant have select *from show tables as such.
Any ideas of how I can get around this?
Thanks!