final class JoinKeyword implements Component (View source)

JOIN keyword parser.

Constants

JOINS

Types of join.

Properties

string|null $type

Type of this join.

Expression|null $expr

Join expression.

Condition[]|null $on

Join conditions.

ArrayObj|null $using

Columns in Using clause.

Methods

__construct(string|null $type = null, Expression|null $expr = null, array|null $on = null, ArrayObj|null $using = null)

No description

string
build()

Builds the string representation of a component of this type.

string
__toString()

No description

Details

__construct(string|null $type = null, Expression|null $expr = null, array|null $on = null, ArrayObj|null $using = null)

No description

Parameters

string|null $type

Join type

Expression|null $expr

join expression

array|null $on

join conditions

ArrayObj|null $using

columns joined

See also

JoinKeyword::JOINS

string build()

Builds the string representation of a component of this type.

In other words, this function represents the inverse function of {\PhpMyAdmin\SqlParser\Component::parse()}.

Return Value

string

string __toString()

No description

Return Value

string