Skip to content

Kirby 5.0.4

$query->join()

Adds a new join clause to the query

$query->join(string $table, string $on, string $type = 'JOIN'): Kirby\Database\Query

Parameters

Name Type Default Description
$tablerequired string no default value Name of the table, which should be joined
$onrequired string no default value The on clause for this join
$type string 'JOIN' The join type. Uses an inner join by default

Return type

Kirby\Database\Query

This method modifies the existing $query object it is applied to and returns it again.

Parent class

Kirby\Database\Query