爱玩科技网
您的当前位置:首页MySQLTableInformation_MySQL

MySQLTableInformation_MySQL

来源:爱玩科技网


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