题目内容

如有where s in (子查询),当子查询的结果为(1,2,3)时,等价于

A. s=1
B. s=3
C. s=1 and s=2 and s=3
D. s=1 or s=2 or s=3

查看答案
更多问题

如有where s=any(子查询),当子查询的结果为(1,2,3)时,不等价于

A. s in (子查询)
B. s=1 and s=2 and s>3
C. s=1 or s=2 or s=3

对于exists子查询,以下说法不正确的是

A. 不需要字段与子查询结果进行比较
B. 子查询结果为空,则exists为假
C. 子查询结果不为空,则exists为真
D. 子查询结果不为空,则exists为假

如有where s >all(子查询),当子查询的结果为(1,2,3)时,等价于( )

A. s>1
B. s>3
C. s>1 and s>2 and s>3
D. s>1 or s>2 or s>3

如有where s

A. s<1
B. s<3
C. s<1 and s<2 and s<3
D. s<1 or s<2 or s<3

答案查题题库