mysql添加一个字段(
Posted 九命黑猫
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql添加一个字段(相关的知识,希望对你有一定的参考价值。
mysql添加一个字段(在指定的一个字段后面)
举个栗子:alter table inquiry add error_code varchar(3) after add_time;
说明:alter table + 表名 + add + 要添加的字段 字段类型 + after + 要跟随的字段名
alter table t_adviser_info add hold int COMMENT ‘0持有,1未持有‘ after stockname
alter table t_adviser_info add profit int comment "0盈利,1亏损" after hold
alter table t_adviser_info add weight int comment "0轻仓,1重仓" after profit
以上是关于mysql添加一个字段(的主要内容,如果未能解决你的问题,请参考以下文章