mysql删除表编码字段_mysql 修改 添加 删除 表字段

mysql 修改 添加 删除 表字段

添加表的字段 alter table 表名 add 字段名 字段的类型

例子: alter table table1 add transactor varchar(10) not Null;

alter table table1 add id int unsigned not Null auto_increment primary key

在mysql数据库中怎样在指定的一个字段后面添加一个字段:

alter table newexample add address varchar(110) after stu_id;

修改表的字段类型 ALTER TABLE 表名 MODIFY COLUMN 字段名 字段类型定义;

例子: ALTER TABLE chatter_users MODIFY COLUMN ip VARCHAR(50);

修改表的字段名 alter table 表名 change 原字段名 新字段名 字段的类型

例子: alter table student change physics physisc char(10) not null

删除表的字段 alter table 表名 drop column 字段名

例子: alter table `user_movement_log` drop column Gatewayid

调整表的顺序: ALTER TABLE user_movement_log CHANGE GatewayId GatewayId int not null default 0 AFTER RegionID

表的重命名 alter table 原表名 rename 现表名;

例子: alter table t1 rename t2;

删除表的数据 delete from 表名 where (条件) id 不是从1开始 ,truncate table 表名 id是从1 开始的

创建表的例子

CREATE TABLE hlh_message (

id int(11) NOT NULL AUTO_INCREMENT COMMENT '健康表id',

title varchar(40) NOT NULL COMMENT '健康标题',

hlh_url text DEFAULT NULL COMMENT '图片地址',

bewrite VARCHAR(350) NOT NULL COMMENT '描述',

content VARCHAR(350) NOT NULL COMMENT '内容',

type tinyint(1) NOT NULL DEFAULT '0' COMMENT '健康知识 0 健康咨询 1',

create_time date DEFAULT NULL COMMENT '发布消息的时间',

PRIMARY KEY (id)

)ENGINE=INNODB DEFAULT CHARSET=utf8 COMMENT='健康表'

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值