Uses of Class
io.github.torand.fastersql.model.Column
Packages that use Column
Package
Description
Provides classes and interfaces related to column and table aliases.
Provides classes and interfaces related to inline value constants for statements.
Provides classes representing arithmetic expressions.
Provides classes and interfaces related to aggregate functions.
Provides classes and interfaces related to single row functions.
Provides classes and interfaces related to system functions.
Provides classes representing join clauses.
Provides classes representing the database model.
Provides classes and interfaces representing order clauses.
Provides classes and interfaces related to predicates.
Provides classes and interfaces representing comparison predicates.
Provides classes and interfaces representing predicates made up by multiple sub-predicates.
Provides classes and interfaces related to projections.
Provides classes and interfaces related to SQL fragments.
Provides classes and interfaces related to statements.
Provides classes and interfaces related to subqueries.
-
Uses of Column in io.github.torand.fastersql.alias
Methods in io.github.torand.fastersql.alias that return types with arguments of type ColumnModifier and TypeMethodDescriptionColumnAlias.columnRefs()
ColumnRef.columnRefs()
TableAlias.columnRefs()
-
Uses of Column in io.github.torand.fastersql.constant
Methods in io.github.torand.fastersql.constant that return types with arguments of type ColumnMethods in io.github.torand.fastersql.constant with parameters of type ColumnModifier and TypeMethodDescriptionCreates a projection of the constant. -
Uses of Column in io.github.torand.fastersql.expression.arithmetic
Methods in io.github.torand.fastersql.expression.arithmetic that return types with arguments of type ColumnModifier and TypeMethodDescriptionAddition.columnRefs()
Division.columnRefs()
Modulo.columnRefs()
Multiplication.columnRefs()
Subtraction.columnRefs()
-
Uses of Column in io.github.torand.fastersql.function.aggregate
Methods in io.github.torand.fastersql.function.aggregate that return types with arguments of type ColumnModifier and TypeMethodDescriptionAvg.columnRefs()
Count.columnRefs()
CountAll.columnRefs()
Max.columnRefs()
Min.columnRefs()
Sum.columnRefs()
-
Uses of Column in io.github.torand.fastersql.function.singlerow
Methods in io.github.torand.fastersql.function.singlerow that return types with arguments of type ColumnModifier and TypeMethodDescriptionAbs.columnRefs()
Ceil.columnRefs()
Concat.columnRefs()
Floor.columnRefs()
Length.columnRefs()
Lower.columnRefs()
Round.columnRefs()
Substring.columnRefs()
ToChar.columnRefs()
ToNumber.columnRefs()
Upper.columnRefs()
-
Uses of Column in io.github.torand.fastersql.function.system
Methods in io.github.torand.fastersql.function.system that return types with arguments of type Column -
Uses of Column in io.github.torand.fastersql.join
Methods in io.github.torand.fastersql.join that return types with arguments of type ColumnConstructors in io.github.torand.fastersql.join with parameters of type Column -
Uses of Column in io.github.torand.fastersql.model
Methods in io.github.torand.fastersql.model that return ColumnModifier and TypeMethodDescriptionCreates a model of a column belonging to this table.Methods in io.github.torand.fastersql.model that return types with arguments of type ColumnMethods in io.github.torand.fastersql.model with parameters of type Column -
Uses of Column in io.github.torand.fastersql.order
Methods in io.github.torand.fastersql.order that return types with arguments of type Column -
Uses of Column in io.github.torand.fastersql.predicate
Methods in io.github.torand.fastersql.predicate that return types with arguments of type ColumnModifier and TypeMethodDescriptionExistsSubquery.columnRefs()
In.columnRefs()
InSubquery.columnRefs()
IsNull.columnRefs()
Like.columnRefs()
-
Uses of Column in io.github.torand.fastersql.predicate.comparison
Methods in io.github.torand.fastersql.predicate.comparison that return types with arguments of type ColumnModifier and TypeMethodDescriptionEq.columnRefs()
Ge.columnRefs()
Gt.columnRefs()
Le.columnRefs()
Lt.columnRefs()
-
Uses of Column in io.github.torand.fastersql.predicate.compound
Methods in io.github.torand.fastersql.predicate.compound that return types with arguments of type Column -
Uses of Column in io.github.torand.fastersql.projection
Methods in io.github.torand.fastersql.projection that return types with arguments of type Column -
Uses of Column in io.github.torand.fastersql.sql
Methods in io.github.torand.fastersql.sql that return types with arguments of type Column -
Uses of Column in io.github.torand.fastersql.statement
Methods in io.github.torand.fastersql.statement that return types with arguments of type ColumnMethods in io.github.torand.fastersql.statement with parameters of type ColumnModifier and TypeMethodDescriptionAdds one or columns as groups to the GROUP BY clause.UpdateStatement.set
(Column column, Expression value) Adds an expression value to be updated for a column.Adds a constant value to be updated for a column.Adds an optional value to be updated for a column.Registers a column-value mapper.InsertStatement.value
(Column column, Expression value) Adds an expression value to be inserted into a column.Adds a constant value to be inserted into a column.Adds an optional value to be inserted into a column. -
Uses of Column in io.github.torand.fastersql.subquery
Methods in io.github.torand.fastersql.subquery that return types with arguments of type Column