Package io.army.criteria.postgre
Interface PostgreCtes
- All Superinterfaces:
io.army.criteria.CteBuilderSpec,io.army.criteria.Item
public interface PostgreCtes
extends io.army.criteria.CteBuilderSpec
This interface representing Postgre cte builder.
- Since:
- 0.6.0
-
Method Summary
Modifier and TypeMethodDescriptionsubSingleDelete(String name) create new cte that create new single-table DELETE statement that is sub insert statement in dynamic with clause.subSingleInsert(String name) create new cte that create new single-table INSERT statement that is sub insert statement in dynamic with clause.subSingleUpdate(String name) create new cte that create new single-table UPDATE statement that is sub insert statement in dynamic with clause.Methods inherited from interface io.army.criteria.CteBuilderSpec
isRecursive
-
Method Details
-
subSingleInsert
create new cte that create new single-table INSERT statement that is sub insert statement in dynamic with clause.
- Parameters:
name- cte name
-
subSingleUpdate
create new cte that create new single-table UPDATE statement that is sub insert statement in dynamic with clause.
- Parameters:
name- cte name
-
subSingleDelete
create new cte that create new single-table DELETE statement that is sub insert statement in dynamic with clause.
- Parameters:
name- cte name
-
subQuery
-