單項(xiàng)選擇題以下關(guān)于unique描述錯(cuò)誤的是()。

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


您可能感興趣的試卷

你可能感興趣的試題

1.單項(xiàng)選擇題下列()約束不可以為空。

A.主鍵
B.外鍵
C.默認(rèn)值
D.UNIQUE約束

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

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

4.單項(xiàng)選擇題where可以設(shè)置查詢的條件,以下()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