Skip to content

Latest commit

 

History

History
173 lines (101 loc) · 4.14 KB

File metadata and controls

173 lines (101 loc) · 4.14 KB

minisql.sql.ast.SelectStatement

Home · Source file

SelectStatement

struct SelectStatement

Groups the select statement state and preserves the field relationships documented below.

View source

Members

ctes

ctes

Stores the ctes associated with this value.

View source

distinct

distinct

Indicates whether the distinct condition is active.

View source

groupBy

groupBy

Stores the group by associated with this value.

View source

havingExpression

havingExpression

Stores the having expression associated with this value.

View source

items

items

Tracks the items numeric value.

View source

joins

joins

Contains the ordered joins collection.

View source

limit

limit

Tracks the limit numeric value.

View source

offset

offset

Tracks the offset numeric value.

View source

orderBy

orderBy

Contains the ordered order by collection.

View source

setOperations

setOperations

Stores the set operations associated with this value.

View source

tableAlias

tableAlias

Stores the table alias associated with this value.

View source

tableName

tableName

Stores the table name associated with this value.

View source

whereExpression

whereExpression

Stores the where expression associated with this value.

View source