2007-04-14 01:49:11 +04:00
|
|
|
Syntax:
|
|
|
|
<code>
|
2007-04-14 03:33:37 +04:00
|
|
|
WHERE <where_condition>
|
2007-04-14 01:49:11 +04:00
|
|
|
</code>
|
|
|
|
|
|
|
|
* The WHERE clause, if given, indicates the condition or conditions that the records must satisfy to be selected.
|
|
|
|
|
|
|
|
|
|
|
|
|
2007-04-14 03:33:37 +04:00
|
|
|
* //where_condition// is an expression that evaluates to true for each row to be selected.
|
2007-04-14 01:49:11 +04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
* 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
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2007-04-13 00:52:30 +04:00
|
|
|
|