Find databases (schemas) containing a particular table on MariaDB server

The query below finds all databases (schemas) containing a particular table.

Query

select table_schema as database_name
from information_schema.tables 
where table_type = 'base table'
    and table_name = 'your table name'
order by table_schema;

Columns

  • database_name - database (schema) name

Rows

  • One row: represents one database (schema)
  • Scope of rows: all databases (schemas) containing the specified table name
  • Ordered by: database (schema) name

Sample results

The screen below shows all the databases (schemas) that contain the customer table.

Comments are only visible when the visitor has consented to statistics cookies. To see and add comments please accept statistics cookies.
0
There are no comments. Click here to write the first comment.