天天看点

添加字段和删除字段

添加表中字段:

alter table tb_userinfo add user_plimsg longtext;

alter table tb_userinfo add user_armymsg longtext;

alter table tb_userinfo add user_unionmsg longtext;

删除表中字段

alter table tb_user drop user_plimsg;

alter table tb_user drop user_armymsg;

alter table tb_user drop user_unionmsg;

继续阅读