Implement 'GROUP BY' statement

This commit is contained in:
Pijus Kamandulis
2024-03-11 17:50:20 +02:00
parent 18edb925bf
commit b72bba86c8
6 changed files with 1120 additions and 942 deletions

View File

@@ -8,6 +8,7 @@ type SelectStmt struct {
Count int
Parameters map[string]interface{}
OrderExpressions []OrderExpression
GroupBy []SelectItem
}
type Table struct {