SQL属性(列)值约束

时间:2011-04-22 09:54:03

标签: sql sqlite constraints

我正在使用sqlite作为我的数据库。我需要将属性限制为0或1的值。

是否可以在表的定义中指定它?

1 个答案:

答案 0 :(得分:0)

CREATE TABLE yourTable
( id INT Primary key
, onefield INT CHECK(onefield IN (0,1))  ---the limited field/attribute
)