A
B
C
D
E
F
G
H
I
J
L
M
N
O
P
Q
R
S
T
U
V
W
X
C
- CaseBranch - class in dsl
- CASE WHEN匹配分支
- caseWhen(CaseBranch) - function in dsl.Clause
- 生成一个CASE WHEN表达式(java中函数名为caseWhen)
- cast(Query,String) - function in dsl.OtherFunction
- 类型转换函数
- checkOLAP(DB) - function in visitor.QueryVisitorKt
- Clause - class in dsl
- CLICKHOUSE - enum entry in database.DB
- ClickhouseOutPutVisitor - class in visitor.outputvisitor
- column(String) - function in dsl.TableSchema
- 伴生对象中设置字段的名称
- column(String) - function in dsl.Clause
- 生成一个字段表达式(可以传入字段名或以.
- column(String,String) - function in dsl.Clause
- 生成一个字段表达式(参数column可以传入字段名或以.
- column(String) - function in query.ddl.CreateIndex
- column(List) - function in query.ddl.CreateIndex
- column(String) - function in query.ddl.CreateTable
- columns(Function1) - function in query.ddl.CreateTable
- columns(List) - function in query.insert.NativeInsert
- insert语句的字段名 例如:NativeInsert() into "t1" columns listOf("c1", "c2")
- columns(String) - function in query.insert.NativeInsert
- insert语句的字段名 例如:NativeInsert().into("t1").
- CONCAT - enum entry in ast.expr.SqlBinaryOperator
- concat(Query) - function in dsl.OtherFunction
- 拼接函数
- concatWs(String,Query) - function in dsl.OtherFunction
- 拼接函数
- convertClassToObject() - function in util.UtilKt
- 根据实体类生成伴生对象代码
- count() - function in dsl.StandardFunction
- 聚合函数COUNT(*)
- count(Query) - function in dsl.StandardFunction
- 聚合函数COUNT
- count(String) - function in dsl.StandardFunction
- 聚合函数COUNT
- countDistinct(Query) - function in dsl.StandardFunction
- 带有DISTINCT聚合函数COUNT
- countDistinct(String) - function in dsl.StandardFunction
- 带有DISTINCT聚合函数COUNT
- create(String) - function in query.ddl.CreateIndex
- create(String) - function in query.ddl.CreateTable
- createIndex(String) - function in database.DBConnection
- 创建一个建索引操作 例如:db createIndex "t1"
- createIndex(String) - function in database.DBTransaction
- 创建一个建索引操作 例如:db createIndex "t1"
- createIndex(String) - function in database.DataBaseImpl
- 创建一个建索引操作 例如:db createIndex "t1"
- CreateIndex - class in query.ddl
- createTable(String) - function in database.DBConnection
- 创建一个建表操作 例如:db createTable "t1"
- createTable(String) - function in database.DBTransaction
- 创建一个建表操作 例如:db createTable "t1"
- createTable(String) - function in database.DataBaseImpl
- 创建一个建表操作 例如:db createTable "t1"
- CreateTable - class in query.ddl
- CreateTable.Column - class in query.ddl.CreateTable
- createUnique(String) - function in query.ddl.CreateIndex
- createUniqueIndex(String) - function in database.DBConnection
- 创建一个建唯一索引的操作 例如:db createUniqueIndex "t1"
- createUniqueIndex(String) - function in database.DBTransaction
- 创建一个建唯一索引的操作 例如:db createUniqueIndex "t1"
- createUniqueIndex(String) - function in database.DataBaseImpl
- 创建一个建唯一索引的操作 例如:db createUniqueIndex "t1"
- CROSS_JOIN - enum entry in ast.table.SqlJoinType
- crossJoin(String) - function in query.select.Select
- cross join子句 例如:Select() from Table1 crossJoin "t2"
- crossJoin(TableSchema) - function in query.select.Select
- cross join子句 例如:Select() from Table1 crossJoin Table2
- crossJoin(SelectQuery) - function in query.select.Select
- cross join子句(子查询) 例如:Select() from Table1 crossJoin (Select() from Table2)
- crossJoinLateral(SelectQuery) - function in query.select.Select
- cross join lateral子句 例如:Select() from Table1 crossJoinLateral (Select() from Table2)