题目内容

在MYSQL中-建立了“学生”表,表中有“学号”、”姓名””性别”和“入学成绩”等字段,执行如下SQL命令:Select 性别,avg (入学成绩)From 学生Group by 性别其结果是( )

A. 计算并显示所有学生的性别和入学成绩的平均值
B. 按性别分组计算并显示性别和入学成绩的平均值
C. 计算并显示所有学生的入学成绩的平均值
D. 按性别分组计算并显示所有学生的入学成绩的平均值

查看答案
更多问题

有订单表orders,包含用户信息userid,产品信息productid,以下( )语句能够返回至少被订购过两回的productid?

A. select productid from orders where count (productid)>1
B. select productid from orders where max (productid)>1
C. select productid from orders where having count (productid)>1 group by productid
D. select productid from orders group by productid having count (productid) >1

用单引号括起来的常量有( )

A. 日期时间型常量
B. 数值型常量
C. 布尔值
D. 字符串常量

表示逻辑与的运算符有( )

A. &&
B. not
C. ||
D. and

表示逻辑或的运算符有( )

A. and
B. ||
C. &&
D. or

答案查题题库