單項選擇題SQL Server中要刪除表student字段sex(值為NULL,0,1)中的值為NULL的數(shù)據(jù),以下語句正確的是()。

A.delete student where sex in(NULL)
B.delete student where sex=NULL
C.delete student where sex is NULL
D.delete student where is NULL(sex,O)is NULL


您可能感興趣的試卷

你可能感興趣的試題

1.單項選擇題在SQL Sever 2005中,假設表stu中包含主鍵列AP列,更新語句是Update stuset AP=200 where AP=300,執(zhí)行結果不可能是()。

A.更新了多行數(shù)據(jù)
B.沒有數(shù)據(jù)更新
C.更新了一行數(shù)據(jù)
D.出現(xiàn)錯誤

2.單項選擇題在SQL Server 2005中,學生表student中包含以下字段:學生編號sid(主鍵,標識列)和學生姓名sname,現(xiàn)在向該表中插入數(shù)據(jù),以下語句正確的是()。

A.Insert into student(sid,sname)values(1,’Jack’)
B.Insert into student(sid,sname)values(1,"jack")
C.Insert into student values(1,"jack")
D.Insert into student values(’jack’)

3.單項選擇題下面()用來釋放游標。

A.declare
B.open
C.close
D.deallocate

4.單項選擇題事務必須具有的性質不包括()。

A.原則性
B.一致性
C.持久性
D.對稱性

5.單項選擇題在SQLServer中使用游標要先聲明,后使用,聲明游標的語句是()。

A.DECLARE游標名CURSOR
B.OPEN游標名
C.DEALLOCATE游標名
D.CLOSE游標名