A.Update grade set score=score+5
B.Update grade set score=score+5 where score>=55 or score <=60
C.Update grade set score=score+5 where score between 55 and 60
D.Update grade set score=score+5 where score >=55 and score <=60
您可能感興趣的試卷
你可能感興趣的試題
A.select top 1 * from book order by price asc
B.select top 1 * from book order by price desc
C.select top 1 * from book where price= (select max (price)from book)
D.select top 1 * from book where price= max(price)
A.select max(score) from grade
B.select top 1 score from grade order by score asc
C.Select min(score) from grade
D.select top 1 score from grade order by score desc
A.01053090A#Hm3?
B.01003090A01
C.01053090D09
D.0101A01
A.Truncate table 可跟Where從句,根據條件進行刪除
B.Truncate table 用來刪除表中所有數據
C.觸發(fā)器對Truncate table無效
D.delete 比Truncate table速度快
A.SELECT * FROM 學習經歷 WHERE 畢業(yè)學校 LIKE ’*清華*’
B.SELECT * FROM 學習經歷 WHERE 畢業(yè)學校 = ’清華%’
C.SELECT * FROM 學習經歷 WHERE 畢業(yè)學校 LIKE ’?清華?’
D.SELECT * FROM 學習經歷 WHERE 畢業(yè)學校 LIKE ’%清華%’
最新試題
批量記錄插入,可以不要求插入數據結構匹配,與約束不沖突。
想要實現級聯刪除必須在數據外鍵上設置“級聯”的更新或刪除。
插入作為一種SQL操作,除了需要正確的命令語法外,還要求插入數據必須與數據表上的(),否則正確的語法也無法實現正常的插入操作。
不同的用戶合理地分配相應權限,能有效控制不同用戶對不同數據的“增刪秘方”權限,是保護數據的一種有效手段。
以下分支結構控制語句正確的是()
正常情況下一般刪除命令都會有帶WHERE子句。
在實際應用中,為了防止新建視圖與已存在的視圖重名產生沖突,常用CREATE OR REPLACE VIEW來創(chuàng)建新視圖。
MySQL 5.0存貯過程的優(yōu)勢是()
out模式定義的參數只能在過程體內部賦值,表示該參數可以將某個值傳遞回調用他的過程。
視圖就是一個虛表,保存視圖時,保存的是視圖的定義。