Is it possible to select from show tables in MySQL?
show tables
SELECT * FROM (SHOW TABLES) AS `my_tables`
Something along these lines, th
Not that I know of, unless you select from INFORMATION_SCHEMA, as others have mentioned.
INFORMATION_SCHEMA
However, the SHOW command is pretty flexible, E.g.:
SHOW
SHOW tables like '%s%'