Uses of Class
org.pgcodekeeper.core.loader.QueryBuilder
Packages that use QueryBuilder
-
Uses of QueryBuilder in org.pgcodekeeper.core.loader
Methods in org.pgcodekeeper.core.loader that return QueryBuilderModifier and TypeMethodDescriptionAdds a column to the SELECT clause.QueryBuilder.column(String prefix, QueryBuilder column, String postfix) Adds a column with prefix and postfix using a subquery.QueryBuilder.copy()Creates a deep copy of this query builder.Sets the FROM clause of the query.QueryBuilder.from(QueryBuilder from, String postfix) Sets the FROM clause using a subquery with postfix.Adds a GROUP BY expression to the query.Adds a JOIN clause to the query.QueryBuilder.join(String prefix, QueryBuilder join, String postfix) Adds a JOIN clause with prefix and postfix using a subquery.QueryBuilder.postAction(String action) Sets a post-action clause (e.g., ORDER BY, LIMIT) to append after the main query.Adds a WHERE condition to the query.QueryBuilder.where(String prefix, QueryBuilder where) Adds a WHERE condition with prefix using a subquery.Adds a Common Table Expression (CTE) to the WITH clause.QueryBuilder.with(String alias, QueryBuilder cte) Adds a Common Table Expression (CTE) using a subquery builder.Methods in org.pgcodekeeper.core.loader with parameters of type QueryBuilderModifier and TypeMethodDescriptionQueryBuilder.column(String prefix, QueryBuilder column, String postfix) Adds a column with prefix and postfix using a subquery.QueryBuilder.from(QueryBuilder from, String postfix) Sets the FROM clause using a subquery with postfix.QueryBuilder.join(String prefix, QueryBuilder join, String postfix) Adds a JOIN clause with prefix and postfix using a subquery.QueryBuilder.where(String prefix, QueryBuilder where) Adds a WHERE condition with prefix using a subquery.QueryBuilder.with(String alias, QueryBuilder cte) Adds a Common Table Expression (CTE) using a subquery builder.