Function proof_of_sql_parser::utility::query_all
source · pub fn query_all(
result_exprs: Vec<SelectResultExpr>,
tab: Box<TableExpression>,
group_by: Vec<Identifier>,
) -> Box<SetExpression>
Expand description
Generate a SetExpression
of the kind SELECT COL1, COL2, … FROM TAB GROUP BY …
Note that there is no WHERE clause.