msql 数据库

mysql怎么查询表中的数据库名

小新
209
2021-02-08 09:27:31
栏目: 云计算

mysql查询表中的数据库名的语法:“show databases”;

mysql怎么查询表中的数据库名

mysql查询表中的数据库名的方法:

1.查询所有数据库,sql语句为:“show databases;”

2.查询指定数据库中所有表名,sql语句为:

select table_name 

from information_schema.tables 

where table_schema='database_name' and table_type='base table';

0
看了该问题的人还看了