GROUP BY
Use GROUP BY to break aggregated results down by dimensions. Grouped dimensions shape the rows returned by a query. Use time dimensions for time-based groups, or use TOP to limit dimensions with many possible values.
Anchor to DimensionsDimensions
GROUP BY uses dimensions, which are fields defined by the selected table's schema. Available dimensions vary by table. Group by one dimension, or list multiple comma-separated dimensions in the order that ShopifyQL should apply the grouping.
A dimension returned by SHOW must appear in GROUP BY, unless it's a time dimension represented by TIMESERIES. If you rename a SHOW dimension with AS, then use the name after AS in GROUP BY. For multiple-table queries, use dimensions that the selected schemas can group together in a multi-fact query.
Anchor to Time dimensionsTime dimensions
Group aggregated results by time dimensions, including intervals such as day and month, and date or clock values such as and . GROUP BY returns only values that exist in the data for a grouped time dimension. Use TIMESERIES when the result should include values for one time dimension even when those values have no data.
- Anchor to secondsecondsecondyyyy-MM-ddThh:mm:ssyyyy-MM-ddThh:mm:ss
Groups rows into one-second intervals.
- Anchor to minuteminuteminuteyyyy-MM-ddThh:mmyyyy-MM-ddThh:mm
Groups rows into one-minute intervals.
- Anchor to hourhourhouryyyy-MM-ddThhyyyy-MM-ddThh
Groups rows into one-hour intervals.
- Anchor to daydaydayyyyy-MM-ddyyyy-MM-dd
Groups rows into calendar days.
- Anchor to weekweekweekyyyy-MM-ddyyyy-MM-dd
Groups rows into calendar weeks.
- Anchor to monthmonthmonthyyyy-MM-ddyyyy-MM-dd
Groups rows into calendar months.
- Anchor to quarterquarterquarteryyyy-MM-ddyyyy-MM-dd
Groups rows into calendar quarters.
- Anchor to yearyearyearyyyy-MM-ddyyyy-MM-dd
Groups rows into calendar years.
- Anchor to hour_of_dayhour_
of_ dayhour_ of_ day 0-230-23 Groups rows by hour of the day, combining that hour across all dates.
- Anchor to day_of_weekday_
of_ weekday_ of_ week 0-60-6 Groups rows by day of the week, combining that weekday across all dates.
- Anchor to week_of_yearweek_
of_ yearweek_ of_ year 1-531-53 Groups rows by week of the year, combining that week across years.
- Anchor to month_of_yearmonth_
of_ yearmonth_ of_ year 1-121-12 Groups rows by month of the year, combining that month across years.
Use TOP to limit a high-cardinality dimension, such as product_title or shipping_country, to its most significant values. TOP count returns the count highest-ranked values, ranked by the metric the query aggregates. count must be a positive integer.
By default, ShopifyQL collects the remaining values into a single Other row, so the results still add up to the query's total. Optional keywords change this behavior:
ONLY, placed beforeTOP, drops theOtherrow and returns only the top values.OVERALL, placed after the dimension, ranks values across the entire result instead of within each precedingGROUP BYdimension. It has no effect on the first dimension.
You can combine TOP with plain dimensions and use more than one TOP in a single GROUP BY.