当前位置:Gxlcms > mysql > MySQLTableInformation_MySQL

MySQLTableInformation_MySQL

时间:2021-07-01 10:21:17 帮助过:2人阅读

show tables; --显示该数据库里的所有表
show columns from 表名; --显示表字段
use information_schema
select * from columns where table_name='表名'; --显示表字段

人气教程排行