1
0
mirror of synced 2024-12-13 22:56:04 +03:00
doctrine2/manual/docs/en/dql-doctrine-query-language/where-clause.txt
2007-10-17 21:16:49 +00:00

11 lines
452 B
Plaintext

Syntax:
<code type="sql">
WHERE <where_condition>
</code>
* The {{WHERE}} clause, if given, indicates the condition or conditions that the records must satisfy to be selected.
* {{where_condition}} is an expression that evaluates to true for each row to be selected.
* The statement selects all rows if there is no {{WHERE}} clause.
* When narrowing results with aggregate function values {{HAVING}} clause should be used instead of {{WHERE}} clause