2024年10月02日 建站教程
如何利用mysql语法查看表中注释或修改表中注释,下面web建站小编给大家详细介绍一下具体实现方法!
查看所有表的注释
SELECT table_name, table_comment FROM information_schema.TABLES WHERE table_schema = '数据库名' ORDER BY table_name
查询某表的所有字段的注释
show full columns from `表名`;
修改表注释
alter table wp_user comment = '修改后的表注释信息';
修改字段注释
alter table wp_user modify column id int comment '主键ID';
本文链接:http://so.lmcjl.com/news/14442/