Where Clauses | Back | Forward | Home |
'Language Reference' User Functions Database Functions Data Manipulation Functions Table Functions Error Handling Functions |
A where clause tells txtSQL what rows that you are looking for. Where clauses can be used in select(), delete() and update. A where clause is simply an array in the following format. array(['$column $op $value' [, $logicalOp]]...); where $column is the name of the column, $op is the operator to use, and $value is the value to check against. For more information on operators, see the relational operators section. For more information on logical operators, see the logical operators section. |