Uses of Class
com.exasol.sql.expression.ColumnReference
-
Packages that use ColumnReference Package Description com.exasol.sql.dql.select com.exasol.sql.expression com.exasol.sql.expression.rendering -
-
Uses of ColumnReference in com.exasol.sql.dql.select
Methods in com.exasol.sql.dql.select that return types with arguments of type ColumnReference Modifier and Type Method Description List<ColumnReference>
GroupByClause. getColumnReferences()
Get list of column references.List<ColumnReference>
OrderByClause. getColumnReferences()
Get list of column references.Methods in com.exasol.sql.dql.select with parameters of type ColumnReference Modifier and Type Method Description GroupByClause
Select. groupBy(ColumnReference... columnReferences)
Create a newGroupByClause
.OrderByClause
Select. orderBy(ColumnReference... columnReferences)
Create a newOrderByClause
.Constructors in com.exasol.sql.dql.select with parameters of type ColumnReference Constructor Description GroupByClause(SqlStatement rootStatement, ColumnReference... columnReferences)
Create a new instance of aGroupByClause
.OrderByClause(SqlStatement rootStatement, ColumnReference... columnReferences)
Create a new instance of aOrderByClause
. -
Uses of ColumnReference in com.exasol.sql.expression
Methods in com.exasol.sql.expression that return ColumnReference Modifier and Type Method Description static ColumnReference
ColumnReference. column(String tableName, String columnName)
Create a newColumnReference
from a column name and a table name.static ColumnReference
ExpressionTerm. column(String column)
Create a reference to a table column.static ColumnReference
ExpressionTerm. column(String table, String column)
Create a reference to a column in a specific table.static ColumnReference
ColumnReference. of(String columnName)
Create a newColumnReference
from a column name.Methods in com.exasol.sql.expression with parameters of type ColumnReference Modifier and Type Method Description void
ValueExpressionVisitor. visit(ColumnReference columnReference)
Visit a column reference. -
Uses of ColumnReference in com.exasol.sql.expression.rendering
Methods in com.exasol.sql.expression.rendering with parameters of type ColumnReference Modifier and Type Method Description void
ValueExpressionRenderer. visit(ColumnReference columnReference)
-