语句DELETE FROM Student表明( )。
A: 删除基本表Student中的列
B: 删除Student中的全部记录
C: 删除基本表Student中的部分行
D: 删除基本表Student
A: 删除基本表Student中的列
B: 删除Student中的全部记录
C: 删除基本表Student中的部分行
D: 删除基本表Student
举一反三
- 执行SQL语句delete<br/>from Student 后()。 A: 删除了Student表中的全部记录 B: 没有删除Student表中的任何记录 C: 删除了Student表中的当前行记录 D: 删除了Student表
- Delete from studentwhere s_id > 5该代码所表示的实际操作为 A: 删除student表中所有s_id B: 删除student表中所有s_id 大于5的记录 C: 删除student表中所有s_id 大于等于5的记录 D: 删除student表
- DELETE FROM student WHERE s_id>5, 对该代码含义描述正确的是() A: 删除student表中所有的s_id B: 删除student表中所有的s_id大于5的记录 C: 删除student表中所有的s_id大于等于5的记录 D: 删除student表
- 删除student表所有的记录,下列语句正确的是 A: DELETE FROM TABLE student; B: DELETE TABLE student; C: TRUNCATE TABLE student; D: TRUNCATE FROM TABLE student;
- 删除当前数据库中的表Student的语句应当是( )。 A: DELETE TABLE Student B: DELETE Student C: DROP Student D: DROP TABLE Student