根据SQL标准,要删除表student中所有数据,但不将表student的定义一起删除,下面哪个语句可以适用?()
A delete from student
B delete all from student
C delete * from student
D drop table student
第1题:
【填空题】若要删除sutdent表的全部数据,数据删除后不可撤销,应使用语句_______________,若想删除student数据表,应使用语句_____________________。
第2题:
第3题:
在VFP中,恢复学生表student中删除的男生记录使用的SQL语句为:性别=”男”。
第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
第5题:
根据SQL标准,删除一个表中的记录,下面哪个语句适用?()
A DROP TABLE
B DROP
C DELETE
D ERASE
第6题:
根据SQL标准,删除一个表,应该使用下面哪个语句?()
A DELETE TABLE
B DROP TABLE
C DELETE VIEW
D DROP DATABASE
第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
第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
第9题:
如果要删除Student数据库中的Information表,可以使用下列哪个命令?一——
A.ALTER TABLE Information
B.TRUNCATE TABLE Information
C.DROP。TABLE Information
D.DELETE TABLE Information