$query->join()
Adds a new join clause to the query
Parameters
Name | Type | Default | Description |
---|---|---|---|
$table * | string |
– | Name of the table, which should be joined |
$on * | string |
– | The on clause for this join |
$type | string |
'JOIN' |
The join type. Uses an inner join by default |
Return type
This method modifies the existing $query
object it is applied to and returns it again.