4. 已知教学管理数据库中学生表的结构如下:学生(学号,姓名,性别,年龄,专业),现要查询专业不是计算机的学生的信息,则查询语句应该是( )
A.select * from 学生 where 专业!='计算机'
B.select * from 学生 where not 专业='计算机'
C.select * from 学生 where 专业 is not '计算机'
D.select * from 学生 where not 专业 is '计算机'
正确答案是AB
4. 已知教学管理数据库中学生表的结构如下:学生(学号,姓名,性别,年龄,专业),现要查询专业不是计算机的学生的信息,则查询语句应该是( )
A.select * from 学生 where 专业!='计算机'
B.select * from 学生 where not 专业='计算机'
C.select * from 学生 where 专业 is not '计算机'
D.select * from 学生 where not 专业 is '计算机'
正确答案是AB