Join
extends Node
in package
Join ::= ["LEFT" ["OUTER"] | "INNER"] "JOIN" JoinAssociationPathExpression ["AS"] AliasIdentificationVariable [("ON" | "WITH") ConditionalExpression]
Tags
Table of Contents
Constants
- JOIN_TYPE_INNER = 3
- JOIN_TYPE_LEFT = 1
- JOIN_TYPE_LEFTOUTER = 2
Properties
- $conditionalExpression : ConditionalExpression|null
- $joinAssociationDeclaration : Node|null
- $joinType : int
Methods
- __construct() : mixed
- __toString() : string
- Dumps the AST Node into a string representation for information purpose only.
- dispatch() : string
- Double-dispatch method, supposed to dispatch back to the walker.
- dump() : string
Constants
JOIN_TYPE_INNER
public
mixed
JOIN_TYPE_INNER
= 3
JOIN_TYPE_LEFT
public
mixed
JOIN_TYPE_LEFT
= 1
JOIN_TYPE_LEFTOUTER
public
mixed
JOIN_TYPE_LEFTOUTER
= 2
Properties
$conditionalExpression
public
ConditionalExpression|null
$conditionalExpression
= null
$joinAssociationDeclaration
public
Node|null
$joinAssociationDeclaration
= null
$joinType
public
int
$joinType
= self::JOIN_TYPE_INNER
Tags
Methods
__construct()
public
__construct(int $joinType, Node $joinAssociationDeclaration) : mixed
Parameters
- $joinType : int
- $joinAssociationDeclaration : Node
Tags
__toString()
Dumps the AST Node into a string representation for information purpose only.
public
__toString() : string
Return values
stringdispatch()
Double-dispatch method, supposed to dispatch back to the walker.
public
dispatch(mixed $sqlWalker) : string
Parameters
- $sqlWalker : mixed
Return values
stringdump()
public
dump(mixed $value) : string
Parameters
- $value : mixed