Drivers\Abstraction\Sql::join PHP Method

join() public method

.. JOIN ..." statement.
public join ( string $table, string $type = null )
$table string Table to join
$type string Type of join: LEFT, RIGHT, INNER
    public function join($table, $type = null)
    {
        $this->joins = $table;
        $this->joinsType = $type;
        return $this;
    }