Schedule planing procedure Schedule planing procedure sqlite sqlite

Schedule planing procedure


In SQL, "grouping" is an operation that not only partitions the rows into groups, but also aggregates all a group's rows to create a single output row for each group.

In your example, the rows are simply sorted by type, number, and hour, which would require a query like this:

SELECT *FROM MyTableORDER BY Type, Number, Hour