7.在创建表以后添加约束

create table t_player(
	sno int(8) , -- suto_increment 自增约束只能添加在列级约束后面
	sname varchar(5) not null , -- not null 非空约束只能在列级约束后面
	sex char(1) default '男', -- default 默认约束值只能在列级约束后面
	age int (3),
	enterdate date,
	classname varchar(10),
	email varchar(15)
);

-- 1075 - Incorrect table definition; there can be only one auto column and it must be defined as a key
-- 错误解决办法:就是将auto_increment去掉


-- 在创建表以后添加约束:
alter table t_player add constraint pk_ply primary key (sno); -- 增加主键约束
alter table t_player modify sno int(8) auto_increment; -- 修改自增条件
alter table t_player add constraint ck_ply_sex check (sex='男'||sex='女');
alter table t_player add constraint ck_ply_age check (age>=18 and age<=50);
alter table t_player add constraint uq_ply_email unique (email);

-- 查看表结构
desc t_player;

验证约束添加成功:查看表结构:

 

  • 1
    点赞
  • 7
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值