Previous Page
multiHaving()

Solar_Sql_Select
multiWhere()

Next Page
orHaving()

multiWhere()

public Solar_Sql_Select multiWhere ( array $list, string $op default 'AND' )

Adds multiple WHERE conditions to the query.

Parameters

  • (array) $list: An array of WHERE conditions.
  • (string) $op: How to add the conditions, by 'AND' (the default) or by 'OR'.

Returns

  • (Solar_Sql_Select)

Description

Adds multiple WHERE conditions to the query.

Otherwise identical to where()/orWhere().

See Also