阅读量:0
在MySQL中,要查询所有数据库的表,可以使用以下命令:
SELECT table_schema AS 'Database', table_name FROM information_schema.tables WHERE table_schema NOT IN ('mysql', 'information_schema', 'performance_schema');
这条命令会从information_schema.tables
表中获取所有非系统自带的数据库(如’mysql’,‘information_schema’,‘performance_schema’)的表名。information_schema
是一个包含所有MySQL数据库元数据的模式。
执行此查询后,您将获得一个结果集,其中包含两列:‘Database’和’table_name’,分别表示数据库名称和表名称。