JDatabaseQuery::rightJoin
Add a RIGHT JOIN clause to the query.
Usage: $query->rightJoin('b ON b.id = a.id')->rightJoin('c ON c.id = b.id');
Signature
public function rightJoin(string
$condition )
Parameters
-
$condition
- The join condition.
Returns
- JDatabaseQuery
- Returns this object to allow chaining.