回 帖 发 新 帖 刷新版面

主题:用sql语句建立检查约束的问题

限定座位号,采用自动编号方式,且必须是1~30号。假设表名:userInfo
字段名:seat
alter table userInfo add check(?)

回复列表 (共3个回复)

沙发

限定座位号,采用自动编号方式,且必须是1~30号。假设表名:userInfo
字段名:seat
alter table userInfo add check(?)


对于楼上所说的
alter table useinfo add constraint ck_seat check(seat between 1 and 30)

板凳

alter table useinfo add constraint ck_seat check(seat> 0 and seat<31)
也行.

3 楼

去查查alter table的帮助吧,顺便学学建立其它约束的办法

我来回复

您尚未登录,请登录后再回复。点此登录或注册