Class:SelectStatement - Superclass: Node Node
⌊ SelectStatement
public class SelectStatement
extends Node
www.doctrine-project.org
Field Summary | |
---|---|
mixed | |
mixed | |
mixed | |
mixed | |
mixed | |
mixed |
Constructor Summary | |
---|---|
SelectStatement(mixed selectClause, mixed fromClause) |
Method Summary | |
---|---|
void | dispatch(mixed sqlWalker, mixed walker, $walker ) Double-dispatch method, supposed to dispatch back to the walker. |
Methods inherited from Doctrine\ORM\Query\AST\Node | |
---|---|
dispatch, dump |
public mixed $fromClause
public mixed $groupByClause
public mixed $havingClause
public mixed $orderByClause
public mixed $selectClause
public mixed $whereClause
public SelectStatement(mixed selectClause, mixed fromClause)
public void dispatch(mixed sqlWalker, mixed walker, $walker )
Double-dispatch method, supposed to dispatch back to the walker.
Implementation is not mandatory for all nodes.
SelectStatement = SelectClause FromClause [WhereClause] [GroupByClause] [HavingClause] [OrderByClause]