The table(s) to which this query should join. Returns this object for
chaining purposes.
public join ( string $TableName, string $On, string $Join = '' ) : Gdn_SQLDriver | ||
$TableName | string | The name of a single table to join to. |
$On | string | The conditions on which the join should occur. ie. "user.role_id = role.id" |
$Join | string | The type of join to be made. Accepted values are: 'inner', 'outer', 'left', 'right', 'left outer', and 'right outer'. |
return | Gdn_SQLDriver | $this |