有订单表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
以下表达式结果相同的是( )
A. 10%3
B. 23-20
C. 13 mod 5
D. 13%5