function SelectQueryInterface::addField
Adds a field to the list to be SELECTed.
Parameters
$table_alias: The name of the table from which the field comes, as an alias. Generally you will want to use the return value of join() here to ensure that it is valid.
$field: The name of the field.
$alias: The alias for this field. If not specified, one will be generated automatically based on the $table_alias and $field. The alias will be checked for uniqueness, so the requested alias may not be the alias that is assigned in all cases.
Return value
The unique alias that was assigned for this field.
2 methods override SelectQueryInterface::addField()
- SelectQuery::addField in includes/
database/ select.inc - Adds a field to the list to be SELECTed.
- SelectQueryExtender::addField in includes/
database/ select.inc - Adds a field to the list to be SELECTed.
File
-
includes/
database/ select.inc, line 193
Class
- SelectQueryInterface
- Interface definition for a Select Query object.
Code
public function addField($table_alias, $field, $alias = NULL);
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.