输入banner图图片脚本导航/分类

MySQLTableInformation_MySQL

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