org.codehaus.jparsec.examples.sql.ast
Class Select
java.lang.Object
org.codehaus.jparsec.examples.common.ValueObject
org.codehaus.jparsec.examples.sql.ast.Select
- All Implemented Interfaces:
- Relation
public final class Select
- extends ValueObject
- implements Relation
Models the select statement.
- Author:
- Ben Yu
distinct
public final boolean distinct
projections
public final List<Projection> projections
from
public final List<Relation> from
where
public final Expression where
groupBy
public final GroupBy groupBy
orderBy
public final OrderBy orderBy
Select
public Select(boolean distinct,
List<Projection> projections,
List<Relation> from,
Expression where,
GroupBy groupBy,
OrderBy orderBy)
Copyright © 2014. All rights reserved.