1. 已知教学管理数据库中学生表结构如下:学生(学号,姓名,性别,年龄),年龄字段为整型,其余字段均为字符型。现要从该表删除一条学号为“201601”的学生记录,则删除语句应该是( )
A.delete from 学生 where 学号='201601'
B.delete * from 学生 where 学号='201601'
C.delete 学生 where学号 is '201601'
D.delete * from 学生 where 学号 is '201601'
正确答案是A
1. 已知教学管理数据库中学生表结构如下:学生(学号,姓名,性别,年龄),年龄字段为整型,其余字段均为字符型。现要从该表删除一条学号为“201601”的学生记录,则删除语句应该是( )
A.delete from 学生 where 学号='201601'
B.delete * from 学生 where 学号='201601'
C.delete 学生 where学号 is '201601'
D.delete * from 学生 where 学号 is '201601'
正确答案是A