DQL: docs for IN expressions
This commit is contained in:
parent
9855ce749c
commit
d83c193b1a
@ -0,0 +1,26 @@
|
||||
Syntax:
|
||||
<div class='sql'>
|
||||
<pre>
|
||||
<i>operand</i> IN (<i>subquery</i>|<i>valuelist</i>)
|
||||
</pre>
|
||||
</div>
|
||||
An IN conditional expression returns true if the <i>operand</i> is found from result of the <i>subquery</i>
|
||||
or if its in the specificied comma separated <i>valuelist</i>, hence the IN expression is always false if the result of the subquery
|
||||
is empty.
|
||||
|
||||
<div class='sql'>
|
||||
<pre>
|
||||
FROM C1 WHERE C1.col1 IN (FROM C2(col1));
|
||||
|
||||
FROM User WHERE User.id IN (1,3,4,5)
|
||||
</pre>
|
||||
</div>
|
||||
|
||||
The keyword IN is an alias for = ANY. Thus, these two statements are equal:
|
||||
<div class='sql'>
|
||||
<pre>
|
||||
FROM C1 WHERE C1.col1 = ANY (FROM C2(col1));
|
||||
FROM C1 WHERE C1.col1 IN (FROM C2(col1));
|
||||
</pre>
|
||||
</div>
|
||||
|
Loading…
x
Reference in New Issue
Block a user