Concept Flow - SELECT with WHERE, ORDER BY, GROUP BY
Start Query
FROM: Choose Table
WHERE: Filter Rows
GROUP BY: Group Rows
SELECT: Choose Columns/Aggregates
ORDER BY: Sort Result
Return Result Set
The query starts by selecting the table, filters rows with WHERE, groups them with GROUP BY, selects columns or aggregates, then sorts the result with ORDER BY before returning.