Skip to content
Advertisement

SQL OR Linq: How to categorize into different batches when category changes

I have the following data:

I am looking for a SQL (or Linq) query to group this data based on the Category changes to be able to see the start and end of each category over time.

Advertisement

Answer

If I followed you correctly, you are dealing with a gaps and island problem.

In pure SQL, this is usually solved using window functions and aggregation. The difference between row numbers gives you the group each record belongs to:

In this DB Fiddle with your sample data, this returns:

NB: this is a MySQL 8.0 DB Fiddle, however this is standard ANSI SQL that should work on any platform that supports window functions.

User contributions licensed under: CC BY-SA
6 People found this is helpful
Advertisement