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

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


您可能感興趣的試卷

你可能感興趣的試題

2.單項選擇題某訂單表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

3.單項選擇題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

5.單項選擇題下列關(guān)于存儲過程中output的描述錯誤的是()。

A.存儲過程中加上output的參數(shù)只能由存儲過程內(nèi)向外傳遞值,而不能由存儲過程外向內(nèi)傳遞值。
B.在定義存儲過程時,需要向外傳遞值的參數(shù)需要加上output參數(shù)。
C.在執(zhí)行存儲過程時,需要向外傳遞值的參數(shù)需要加上output參數(shù)。
D.output的作用是能使存儲過程的參數(shù)向過程外傳遞值。