GROUP BY in gsSQL

Custom functions used in Google Sheets for ease of use and improved functionality.

GROUP BY syntax

SELECT column_name(s)
    FROM table_name
    WHERE condition
    GROUP BY column_name(s)
    ORDER BY column_name(s);

What is GROUP BY used for?

What selected fields are allowed in a select with GROUP BY?

gsSQL and GROUP BY.