Query below finds tables which names start with specific prefix, e.g. tables with names starting with 'WEB'.
Query
select table_schema,
table_name
from information_schema.tables
where table_type = 'BASE TABLE'
and table_name like 'WEB%'
order by table_name,
table_schema;
Columns
- table_schema - name of schema table was found in
- table_name - name of found table
Rows
- One row represents a table
- Scope of rows: all found tables
- Ordered by table name, schema name