MySQL Table Information_MySQL
程序员文章站
2022-03-28 17:57:49
...
show tables; --显示该数据库里的所有表
show columns from 表名; --显示表字段
use information_schema
select * from columns where table_name='表名'; --显示表字段
show columns from 表名; --显示表字段
use information_schema
select * from columns where table_name='表名'; --显示表字段