题库 软件开发 题目列表 有订单表orders,包含字段用户信息userid,字段产品信...
单选题

有订单表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

题目信息
校招真题
-
正确率
0
评论
22
点击