本文主要内容mysql 列常用命令:
查看表的列的属性 describe table_name column_name
show all column property查看所有列的属性
修改表的列属性 alter table a26d98d33123a70024fa8ba5642906c6 modify 8265308019c1f8044a808e32b832a159 744fc2083e98f2f4f987296bb2778d3e
rename column重命名列
添加列(同时添加索引)、删除列
修改列的默认值
describe table_name column_name
很多时候我们需要查看列的详细详细,例如:
describe springdemo.blog title;
show fields from springdemo.blog;
查看所有列
修改表的列属性 alter table a26d98d33123a70024fa8ba5642906c6 modify 8265308019c1f8044a808e32b832a159 744fc2083e98f2f4f987296bb2778d3e
修改表的字段名 alter table a26d98d33123a70024fa8ba5642906c6 changefb8da96b0c18c90e38527356bf8e8164 6fd921f7630c052188a26d13ed084155 744fc2083e98f2f4f987296bb2778d3e
注意:数据在数据库中的存储和数据类型有很大的关系,故而不要随便改数据类型
alter table springdemo.blog change title title_new nvarchar(60) comment ‘修改啦’;
alter table springdemo.tb_ms_audit_user_infoadd mal_report int default 0comment '恶意举报的次数', add index(mal_report);
删除字段 : alter table <表名> drop <列名>
alter table tablename alter column drop default; #(若本身存在默认值,则先删除)alter table tablename alter column set default 't5';# (若本身不存在则可以直接设定)
转载务必注明出处,尊重别人的劳动成果。
以上是mysql列column常用命令的使用总结的详细内容。更多信息请关注PHP中文网其他相关文章!