Mysql修改表结构的修改与约束

     首先创建一个数据表,用于修改

主键约束

#主键一定是不能为空的,当其他数值相同时通过主键来快速查找所需的数据,主键的数据一定是唯一的

alter table db_hero modify id int not null primary key;

数据自增

#数据自增量的前提是,该数据为一个特定的键位(这里在上图已经设置为主键)

alter table db_hero modify id int auto_incremet;

唯一键约束

#唯一键就是,该表中此列数据只能是唯一的数值,不能出现相同的数据

alter table db_hero modify name varchar(20) unique key;

 默认值约束

#当此列数据不添加任何数值,该键会为此添加默认数据

alter table db_hero modify age bigint default 18;

 非空约束

#非空约束,证明此列为必填项,若是不插入数据则会报错

alter table db_hero name varchar(20) not null;

 

检查约束 

#用于锁定所填数值的范围,例如年龄必须大于0,就可以用check (age > 0)

alter table db_hero add constraint age check(age > 0);

 修改表结构

#将types的char类型修改为char(20)

alter table db_hero modify types char(20);

 

#修改types的标签名字,修改为ethnic

alter table db_hero change types ethnic varchar(20);

增加字段

#增加一个新的字段

alter table db_hero add phone int;

删除字段

#删除一个字段

alter table db_hero drop phone;

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值