主题:用sql语句建立检查约束的问题
supercrsky
[专家分:580] 发布于 2007-01-13 18:11:00
限定座位号,采用自动编号方式,且必须是1~30号。假设表名:userInfo
字段名:seat
alter table userInfo add check(?)
最后更新于:2007-01-13 18:22:00
回复列表 (共3个回复)
沙发
8500708 [专家分:120] 发布于 2007-01-29 22:18:00
限定座位号,采用自动编号方式,且必须是1~30号。假设表名:userInfo
字段名:seat
alter table userInfo add check(?)
对于楼上所说的
alter table useinfo add constraint ck_seat check(seat between 1 and 30)
板凳
jinlonggao [专家分:17130] 发布于 2007-03-03 16:39:00
alter table useinfo add constraint ck_seat check(seat> 0 and seat<31)
也行.
3 楼
棉花糖ONE [专家分:90] 发布于 2007-03-04 00:53:00
去查查alter table的帮助吧,顺便学学建立其它约束的办法
我来回复