W3cubDocs

/Drupal 8

public function Select::addExpression

public Select::addExpression($expression, $alias = NULL, $arguments = array())

Adds an expression to the list of "fields" to be SELECTed.

An expression can be any arbitrary string that is valid SQL. That includes various functions, which may in some cases be database-dependent. This method makes no effort to correct for database-specific functions.

Parameters

$expression: The expression string. May contain placeholders.

$alias: The alias for this expression. If not specified, one will be generated automatically in the form "expression_#". The alias will be checked for uniqueness, so the requested alias may not be the alias that is assigned in all cases.

$arguments: Any placeholder arguments needed for this expression.

Return value

The unique alias that was assigned for this expression.

Overrides Select::addExpression

File

core/lib/Drupal/Core/Database/Driver/pgsql/Select.php, line 117

Class

Select
PostgreSQL implementation of \Drupal\Core\Database\Query\Select.

Namespace

Drupal\Core\Database\Driver\pgsql

Code

public function addExpression($expression, $alias = NULL, $arguments = array()) {
  if (empty($alias)) {
    $alias = 'expression';
  }

  // This implements counting in the same manner as the parent method.
  $alias_candidate = $alias;
  $count = 2;
  while (!empty($this->expressions[$alias_candidate])) {
    $alias_candidate = $alias . '_' . $count++;
  }
  $alias = $alias_candidate;

  $this->expressions[$alias] = array(
    'expression' => $expression,
    'alias' => $this->connection->escapeAlias($alias_candidate),
    'arguments' => $arguments,
  );

  return $alias;
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!lib!Drupal!Core!Database!Driver!pgsql!Select.php/function/Select::addExpression/8.1.x