已知教学管理数据库中学生表的结构如下:学生(学号,姓名,性别,年龄,专业),现要查询专业不是计算机的学生的信息,则查询语句应该是()
A. select * from 学生 where 专业!=计算机
B. select * from 学生 where not 专业=计算机
C. select * from 学生 where 专业 is not 计算机
D. select * from 学生 where not 专业 is 计算机
在关系数据库中,作为表的主键应该满足什么条件()
A. 不允许为空
B. 取值不能重复
C. 主键值不允许被改变
D. 不能以多个字段作为主键
已知教学管理数据库中学生表的结构如下:学生(学号,姓名,性别,年龄,专业),现要查询计算机专业学生的人数,则下列查询语句正确的是()
A. select count(学号) from 学生 where 专业=计算机
B. select sum(学号) from 学生 where 专业=计算机
C. select count(*) from 学生 where 专业=计算机
D. select sum(*) from 学生 where 专业=计算机