單項(xiàng)選擇題以下觸發(fā)器是當(dāng)對(duì)tablel進(jìn)行()操作時(shí)觸發(fā)Create Trigger abc on table1 For insert,update,deleteAs…

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


您可能感興趣的試卷

你可能感興趣的試題

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

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

2.單項(xiàng)選擇題where可以設(shè)置查詢(xún)的條件,以下()SQL語(yǔ)句肯定查詢(xún)不出數(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

4.單項(xiàng)選擇題下列關(guān)于存儲(chǔ)過(guò)程中output的描述錯(cuò)誤的是()。

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