public interface ColumnArithmetic
| 限定符和类型 | 方法和说明 |
|---|---|
ColumnArithmetic |
add(ColumFunction columFunction) |
<T,F> ColumnArithmetic |
add(Fn<T,F> column)
将指定列的值与当前列相加。
|
ColumnArithmetic |
add(Number value)
将数值与当前列相加。
|
ColumnArithmetic |
add(SelectDsl nestedSelect)
使用嵌套查询的结果与当前列相加。
|
ColumnArithmetic |
divide(ColumFunction columFunction) |
<T,F> ColumnArithmetic |
divide(Fn<T,F> column)
将当前列的值与指定列相除。
|
ColumnArithmetic |
divide(Number value)
将当前列的值与数值相除。
|
ColumnArithmetic |
divide(SelectDsl nestedSelect)
使用嵌套查询的结果与当前列相除。
|
ColumnArithmetic |
multiply(ColumFunction columFunction) |
<T,F> ColumnArithmetic |
multiply(Fn<T,F> column)
将当前列的值与指定列相乘。
|
ColumnArithmetic |
multiply(Number value)
将当前列的值与数值相乘。
|
ColumnArithmetic |
multiply(SelectDsl nestedSelect)
使用嵌套查询的结果与当前列相乘。
|
ColumnArithmetic |
subtract(ColumFunction columFunction) |
<T,F> ColumnArithmetic |
subtract(Fn<T,F> column)
将指定列的值从当前列中减去。
|
ColumnArithmetic |
subtract(Number value)
将数值从当前列中减去。
|
ColumnArithmetic |
subtract(SelectDsl nestedSelect)
使用嵌套查询的结果从当前列中减去。
|
<T,F> ColumnArithmetic add(Fn<T,F> column)
T - 实体类型F - 列类型column - 要相加的列ColumnArithmetic add(Number value)
value - 要相加的数值ColumnArithmetic add(ColumFunction columFunction)
ColumnArithmetic add(SelectDsl nestedSelect)
nestedSelect - 嵌套查询的表达式<T,F> ColumnArithmetic subtract(Fn<T,F> column)
T - 实体类型F - 列类型column - 要减去的列ColumnArithmetic subtract(Number value)
value - 要减去的数值ColumnArithmetic subtract(ColumFunction columFunction)
ColumnArithmetic subtract(SelectDsl nestedSelect)
nestedSelect - 嵌套查询的表达式<T,F> ColumnArithmetic multiply(Fn<T,F> column)
T - 实体类型F - 列类型column - 要相乘的列ColumnArithmetic multiply(Number value)
value - 要相乘的数值ColumnArithmetic multiply(ColumFunction columFunction)
ColumnArithmetic multiply(SelectDsl nestedSelect)
nestedSelect - 嵌套查询的表达式<T,F> ColumnArithmetic divide(Fn<T,F> column)
T - 实体类型F - 列类型column - 要相除的列ColumnArithmetic divide(Number value)
value - 要相除的数值ColumnArithmetic divide(ColumFunction columFunction)
ColumnArithmetic divide(SelectDsl nestedSelect)
nestedSelect - 嵌套查询的表达式Copyright © 2024–2026 Dynamic-SQL. All rights reserved.