SQLExpressionBuilder🔗
Constructor🔗
Methods🔗
build🔗
Builds the object.
from🔗
FROM part of the SQL expression
groupBy🔗
GROUP BY part of the SQL expression
public SQLExpressionBuilder groupBy(com.grafana.foundation.cog.Builder<QueryEditorArrayExpression> groupBy)
limit🔗
LIMIT part of the SQL expression
orderBy🔗
ORDER BY part of the SQL expression
public SQLExpressionBuilder orderBy(com.grafana.foundation.cog.Builder<QueryEditorFunctionExpression> orderBy)
orderByDirection🔗
The sort order of the SQL expression, ASC
or DESC
select🔗
SELECT part of the SQL expression
public SQLExpressionBuilder select(com.grafana.foundation.cog.Builder<QueryEditorFunctionExpression> select)
where🔗
WHERE part of the SQL expression
public SQLExpressionBuilder where(com.grafana.foundation.cog.Builder<QueryEditorArrayExpression> where)