Uses of Interface
com.exasol.sql.Fragment
-
-
Uses of Fragment in com.exasol.sql
Subinterfaces of Fragment in com.exasol.sql Modifier and Type Interface Description interface
SqlStatement
This interface represents an SQL statement.Classes in com.exasol.sql that implement Fragment Modifier and Type Class Description class
AbstractFragment
Common base class for SQL statement fragmentsclass
Column
This class represents a column in an SQL statementclass
ColumnsDefinition
This class represents a list of column definitions in an SQL statement.class
DerivedColumn
This class represents a derived column in an SQL query.class
Table
Represents aTable
in an SQL Statement.class
ValueTable
Value tables are pseudo-tables constructed from rows and columns of expressions (e.g.class
ValueTableRow
This class represents a row in aValueTable
.Fields in com.exasol.sql declared as Fragment Modifier and Type Field Description protected Fragment
AbstractFragment. root
Root fragment of the statement fragment tree.Methods in com.exasol.sql that return Fragment Modifier and Type Method Description Fragment
AbstractFragment. getRoot()
Fragment
Fragment. getRoot()
Get the root statement of this SQL fragment.Methods in com.exasol.sql with parameters of type Fragment Modifier and Type Method Description static ValueTableRow.Builder
ValueTableRow. builder(Fragment root)
Get aValueTableRow.Builder
for aValueTableRow
.Constructors in com.exasol.sql with parameters of type Fragment Constructor Description AbstractFragment(Fragment root)
Create an instance of an SQL fragmentBuilder(Fragment root)
Create a new builder for a value table row.Column(Fragment root, String columnName, DataType dataType)
Create a new instance of aColumn
DerivedColumn(Fragment root, ValueExpression valueExpression)
Create a new instance of aDerivedColumn
.DerivedColumn(Fragment root, ValueExpression valueExpression, String derivedColumnName)
Create a new instance of aDerivedColumn
.Table(Fragment root, String name)
Create a newTable
with a name and an alias.Table(Fragment root, String name, String alias)
Create a newTable
with a name and an alias.ValueTable(Fragment root)
Create a newValueTable
.ValueTableRow(Fragment root, ValueExpression... expressions)
Create a value table row from a list of expressions.ValueTableRow(Fragment root, String... values)
Create a value table row from a list of string literals. -
Uses of Fragment in com.exasol.sql.ddl
Classes in com.exasol.sql.ddl that implement Fragment Modifier and Type Class Description class
Schema
This class represents aSchema
in an SQL StatementConstructors in com.exasol.sql.ddl with parameters of type Fragment Constructor Description Schema(Fragment root, String schemaName)
Create a newSchema
-
Uses of Fragment in com.exasol.sql.ddl.create
Subinterfaces of Fragment in com.exasol.sql.ddl.create Modifier and Type Interface Description interface
CreateSchemaFragment
This is the common interface for all fragments of a CREATE SCHEMA statement.interface
CreateTableFragment
This is the common interface for all fragments of a CREATE TABLE statement.Classes in com.exasol.sql.ddl.create that implement Fragment Modifier and Type Class Description class
CreateSchema
This class implements an SQLCreateSchema
statement.class
CreateTable
This class implements an SQLCreateTable
statement -
Uses of Fragment in com.exasol.sql.ddl.drop
Subinterfaces of Fragment in com.exasol.sql.ddl.drop Modifier and Type Interface Description interface
DropSchemaFragment
This is the common interface for all fragments of a DROP SCHEMA statement.interface
DropTableFragment
This is the common interface for all fragments of a DROP TABLE statement.Classes in com.exasol.sql.ddl.drop that implement Fragment Modifier and Type Class Description class
Cascade
This class represents CASCADE clause in DROP SCHEMA SQL statementclass
CascadeConstraints
This class represents CASCADE CONSTRAINTS clause in the DROP TABLE SQL statementclass
DropSchema
This class implements an SQLDropSchema
statement.class
DropTable
This class implements an SQLDropTable
statement.class
Restrict
This class represents RESTRICT clause in DROP SCHEMA SQL statementConstructors in com.exasol.sql.ddl.drop with parameters of type Fragment Constructor Description Cascade(Fragment root)
Create an instance ofCascade
classCascadeConstraints(Fragment root)
Create an instance ofCascadeConstraints
classRestrict(Fragment root)
Create an instance ofRestrict
class -
Uses of Fragment in com.exasol.sql.dml.insert
Subinterfaces of Fragment in com.exasol.sql.dml.insert Modifier and Type Interface Description interface
InsertFragment
This is the common interface for all fragments of a INSERT statement.Classes in com.exasol.sql.dml.insert that implement Fragment Modifier and Type Class Description class
AbstractInsertValueTable<T extends AbstractInsertValueTable<T>>
Abstract base class for SQL fragments that contain a insert value table (for exampleINSERT
,MERGE
).class
Insert
This class implements an SQLInsert
statement.class
InsertFields
Field list that defines the fields data is being inserted into.Constructors in com.exasol.sql.dml.insert with parameters of type Fragment Constructor Description AbstractInsertValueTable(Fragment root)
Create the abstract base for a fragment containing a value table.InsertFields(Fragment root)
Create an new instance ofInsertFields
-
Uses of Fragment in com.exasol.sql.dml.merge
Subinterfaces of Fragment in com.exasol.sql.dml.merge Modifier and Type Interface Description interface
MergeFragment
This is the common interface for all fragments of aMERGE
statement.Classes in com.exasol.sql.dml.merge that implement Fragment Modifier and Type Class Description class
MatchedClause
Representation of theWHEN MATCHED
part of an SQLMERGE statement
.class
Merge
class
MergeColumnUpdate
Update of a value in a column caused by aMERGE
command.class
MergeDeleteClause
This class represents theMERGE
strategy of deleting matched rows.class
MergeInsertClause
Represents theMERGE
strategy of inserting rows from the source that do not match any row in the destination.class
MergeMethodDefinition
Abstract base class for merge method definitions likeWHEN MATCHED THEN UPDATE
.class
MergeUpdateClause
Represents theMERGE
strategy of updating matched rows.class
NotMatchedClause
Representation of theWHEN NOT MATCHED
part of an SQLMERGE statement
.class
OnClause
TheON
clause of an SQLMERGE
statement.class
UsingClause
TheUSING
clause of an SQLMERGE
statement.Constructors in com.exasol.sql.dml.merge with parameters of type Fragment Constructor Description MatchedClause(Fragment root)
Create a new instance of aMatchedClause
.MergeColumnUpdate(Fragment root, String column, ValueExpression expression)
Create a new instance of aMergeColumnUpdate
.MergeDeleteClause(Fragment root)
Create a new instance of aMergeDeleteClause
.MergeInsertClause(Fragment root)
Create a new instance of aMergeInsertClause
.MergeMethodDefinition(Fragment root)
Create the abstract base for a merge method definition.MergeUpdateClause(Fragment root)
Create a new instance of aMergeUpdateClause
.NotMatchedClause(Fragment root)
Create a new instance of aNotMatchedClause
.OnClause(Fragment root, BooleanExpression condition)
Create a new instance of aOnClause
.UsingClause(Fragment root, String sourceTable)
Create a new instance of aUsingClause
.UsingClause(Fragment root, String sourceTable, String as)
Create a new instance of aUsingClause
. -
Uses of Fragment in com.exasol.sql.dql.select
Subinterfaces of Fragment in com.exasol.sql.dql.select Modifier and Type Interface Description interface
SelectFragment
This is the common interface for all fragments of a SELECT statement.Classes in com.exasol.sql.dql.select that implement Fragment Modifier and Type Class Description class
FromClause
This class represents theFROM
clause of an SQLSELECT
statement.class
GroupByClause
This class represents the GROUP BY clause of an SQL statement.class
Join
This class implements theJoin
part of a WHERE clause.class
LimitClause
This class represents the limit clause of an SQL statement.class
OrderByClause
This class represents theORDER BY
clause of an SQL statement.class
Select
This class implements an SQLSelect
statement.class
WhereClause
This class represents the where clause of an SQL statement.Constructors in com.exasol.sql.dql.select with parameters of type Fragment Constructor Description FromClause(Fragment root)
Create a new instance of aFromClause
.Join(Fragment root, JoinType type, String name, String specification)
Create a newJoin
instance -
Uses of Fragment in com.exasol.sql.rendering
Methods in com.exasol.sql.rendering with parameters of type Fragment Modifier and Type Method Description protected void
AbstractFragmentRenderer. appendCommaWhenNeeded(Fragment fragment)
Append a comma where necessary.protected void
AbstractFragmentRenderer. setLastVisited(Fragment fragment)
Set the last statement fragment that was visited.
-