ColumnDeclaringExpression
Column declaring expression, represents the selected columns in a SelectExpression.
For example, select a.name as label from dual
, a.name as label
is a column declaring.
Properties
the declaring label.
the source expression, might be a ColumnExpression or other scalar expression types.
Extra properties of this expression, maybe useful in SqlFormatter to generate some special SQLs.
Check if this expression is a leaf node in expression trees.
Functions
Wrap this instance as a ColumnDeclaringExpression.
And operator, translated to the and
keyword in SQL.
Order this column or expression in ascending order.
Convert this instance to a ScalarExpression.
Between operator, translated to between .. and ..
in SQL.
Cast the current column or expression to the given SqlType.
Order this column or expression in descending order, corresponding to the desc
keyword in SQL.
Divide operator, translated to /
in SQL.
Equal operator, translated to =
in SQL.
Greater operator, translated to >
in SQL.
Greater-eq operator, translated to >=
in SQL.
Greater operator, translated to >
in SQL.
Greater-eq operator, translated to >=
in SQL.
In-list operator, translated to the in
keyword in SQL.
Check if the current column or expression is not null, translated to is not null
in SQL.
Check if the current column or expression is null, translated to is null
in SQL.
Less operator, translated to <
in SQL.
Less-eq operator, translated to <=
in SQL.
Like operator, translated to the like
keyword in SQL.
Less operator, translated to <
in SQL.
Less-eq operator, translated to <=
in SQL.
Minus operator, translated to -
in SQL.
Not-equal operator, translated to <>
in SQL.
Negative operator, translated to the not
keyword in SQL.
Not-between operator, translated to not between .. and ..
in SQL.
Not-equal operator, translated to <>
in SQL.
Not-in-list operator, translated to the not in
keyword in SQL.
Not like operator, translated to the not like
keyword in SQL.
Or operator, translated to the or
keyword in SQL.
Plus operator, translated to +
in SQL.
Mod operator, translated to %
in SQL.
Multiply operator, translated to *
in SQL.
Cast the current column or expression's type to Double.
Cast the current column or expression's type to Float.
Cast the current column or expression's type to Int.
Cast the current column or expression's type to Long.
Cast the current column or expression's type to Short.
Unary minus operator, translated to -
in SQL.
Unary plus operator, translated to +
in SQL.
Wrap the given argument as an ArgumentExpression using the sqlType.
Xor operator, translated to the xor
keyword in SQL.