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