zl程序教程

您现在的位置是:首页 >  数据库

当前栏目

mysql 查询数据库中所有表名称

mysql 所有 名称 查询数据库
2023-09-11 14:21:26 时间
select table_name 
from information_schema.tables 
where table_schema='数据库名称';

select table_name 
from information_schema.tables 
where table_schema='数据库名称' and table_type = 'BASE TABLE' AND table_schema = DATABASE ();