rightJoin

  1. drupal
    1. drupal7
Versionen
drupal7 public SelectQueryInterface::rightJoin($table, $alias = NULL, $condition = NULL, $arguments = array())

Right Outer Join against another table in the database.

Übergabeparameter

$table The table against which to join.

$alias The alias for the table. In most cases this should be the first letter of the table, or the first letter of each "word" in the table.

$condition The condition on which to join this table. If the join requires values, this clause should use a named placeholder and the value or values to insert should be passed in the 4th parameter. For the first table joined on a query, this value is ignored as the first table is taken as the base table.

$arguments An array of arguments to replace into the $condition of this join.

Rückgabewert

The unique alias that was assigned for this table.

Verwandte Themen

Code

includes/database/select.inc, line 281

<?php
public function rightJoin($table, $alias = NULL, $condition = NULL, $arguments = array());
?>

Kommentare

Kommentar hinzufügen

Der Inhalt dieses Feldes wird nicht öffentlich zugänglich angezeigt.
  • Internet- und E-Mail-Adressen werden automatisch umgewandelt.
  • Zulässige HTML-Tags: <a> <em> <strong> <cite> <code> <ul> <ol> <li> <dl> <dt> <dd>
  • Zeilen und Absätze werden automatisch erzeugt.

Weitere Informationen über Formatierungsoptionen

Kommentar hinzufügen

Der Inhalt dieses Feldes wird nicht öffentlich zugänglich angezeigt.
  • Internet- und E-Mail-Adressen werden automatisch umgewandelt.
  • Zulässige HTML-Tags: <a> <em> <strong> <cite> <code> <ul> <ol> <li> <dl> <dt> <dd>
  • Zeilen und Absätze werden automatisch erzeugt.

Weitere Informationen über Formatierungsoptionen