db_and

Definition

db_and()
drupal/includes/database/query.inc, line 1373

Description

Returns a new DatabaseCondition, set to "AND" all conditions together.

Return value

DatabaseCondition

Related topics

Namesort iconDescription
Database abstraction layerAllow the use of different database servers using the same code base.

Code

function db_and() {
  return new DatabaseCondition('AND');
}