浙江大学

根据SQL标准,要删除表student中所有数据,但不将表student的定义一起删除,下面哪个语句可以适用?()A delete from studentB delete all from studentC delete * from studentD drop table student

题目

根据SQL标准,要删除表student中所有数据,但不将表student的定义一起删除,下面哪个语句可以适用?()

A delete from student

B delete all from student

C delete * from student

D drop table student

如果没有搜索结果,请直接 联系老师 获取答案。
如果没有搜索结果,请直接 联系老师 获取答案。
相似问题和答案

第1题:

【填空题】若要删除sutdent表的全部数据,数据删除后不可撤销,应使用语句_______________,若想删除student数据表,应使用语句_____________________。


DROP TABLE A

第2题:

要删除Student表的Birthyear列,同时删除所有引用该列的视图和约束。下列哪一个SQL语句正确表达了这一删除要求()。

A.ALTERTABLEStudentDELECTBirthyearRESTRICT
B.ALTERTABLEStudentDELETEBirthyearCASCADE
C.ALTERTABLEStudentDROPBirthyearRESTRICT
D.ALTERTABLEStudentDROPBirthyearCASCADE

答案:C
解析:
对视图的操作是DDL。要删除Student表的Birthyear列,同时删除所有引用该列的视图和约束,SQL语句是:ALTERTABLEStudentDROPBirthyearRESTRICT。

第3题:

在VFP中,恢复学生表student中删除的男生记录使用的SQL语句为:性别=”男”。


正确答案:
RECALLFOR
VFP记录删除分为逻辑删除和物理删除,被逻辑删除的记录可以恢复,恢复记录的命令是RECALL,格式为RECALL [FOR lExpression1];物理删除有删除标记记录的命令是PACK,执行该命令后所有有删除标记的记录将从表中被物理删除且不能被恢复;使用ZAP命令可以物理删除表中的全部记录(不管是否有删除标记),该命令只是删除全部记录,并没有删除表,执行完该命令后表结构依然存在。 

第4题:

根据SQL标准,要查询表student中所有年龄age小于所有学生的平均年龄的记录,下面哪条语句适用?()

A select * from student where age< avg(age)

B select * from student having age< avg(age)

C select * from student a where a.age< (select avg(b.age) from student b)

D select * from student a where (select avg(b.age) from student b ) >= a.age


参考答案C

第5题:

根据SQL标准,删除一个表中的记录,下面哪个语句适用?()

A DROP TABLE

B DROP

C DELETE

D ERASE


参考答案C

第6题:

根据SQL标准,删除一个表,应该使用下面哪个语句?()

A DELETE TABLE

B DROP TABLE

C DELETE VIEW

D DROP DATABASE


参考答案B

第7题:

根据SQL标准,要修改表student中所有学生的年龄age,使之在原值基础上减一,下面哪个语句适用?()

A update student set age = 1

B update student set age = age - 1

C update age = age -1 from student

D update from student where age = age -1


参考答案B

第8题:

根据SQL标准,删除表student中对字段sno的唯一性约束,应该使用下面哪条语句? ()

A drop sno from table student

B alter table student drop sno

C alter table student drop unique(sno)

D alter table student drop sno unique


参考答案C

第9题:

如果要删除Student数据库中的Information表,可以使用下列哪个命令?一——

A.ALTER TABLE Information

B.TRUNCATE TABLE Information

C.DROP。TABLE Information

D.DELETE TABLE Information


正确答案:C
解析:删除表的语言格式为:DROP TABLE<表名>I{[,<表名>]…l}。