單項選擇題一張表的sex字段是int類型,為限制輸入的值只能是0或1,以下約束不正確的是()。

A.check(sex=0 or sex=1)
B.check(sex between 0 and 1)
C.check(sex in(0,1))
D.check(sex =(O,1))


您可能感興趣的試卷

你可能感興趣的試題

1.單項選擇題以下關于unique描述錯誤的是()。

A.設置了unique的字段的值必須唯一
B.設置了unique的字段的值不能為null
C.設置了primary key的字段一定設置有unique屬性
D.設置了unique的字段一定有索引

2.單項選擇題下列()約束不可以為空。

A.主鍵
B.外鍵
C.默認值
D.UNIQUE約束

3.單項選擇題以下觸發(fā)器是當對tablel進行()操作時觸發(fā)Create Trigger abc on table1 For insert,update,deleteAs…

A.只是修改
B.只是插入
C.只是刪除
D.修改、插入、刪除

4.單項選擇題某訂單表orders,其中有一個訂購數(shù)量字段quantity和一個單價字段UnitPrice,銷售經(jīng)理要求查詢出每個訂單記錄的總價格,可采用如下的()語句。

A.SELECT quantity,UnitPrice FROM sales
B.SELECT quantity,UnitPrice,quantity+UnitPrice AS totalPrices FROM sales
C.SELECT quantity,UnitPrice,quantity*UnitPrice AS totalPrices FROM sales
D.SELECT quantity,UnitPrice,sum(quantity*UnitPrice) AS totalPrice FROM sales

5.單項選擇題where可以設置查詢的條件,以下()SQL語句肯定查詢不出數(shù)據(jù)。

A.selectc ompanyname,fax from suppliers where fax is null
B.select companyname,fax from suppliers where country in(’China’,’Italy’)
C.select companyname,fax from suppliers where country=’China’ or country=’Italy’
D.select companyname,fax from suppliers where fax=null