How to combine separate date and time columns into a single date-time column them filter by ID column = C then create Pivot table of events from Event column (where ID column = C) with horizontal access as hourly.
You can do all of that cleanly in DuckDB using one SQL pipeline: combine date+time → filter by ID → build hourly pivot. I’ll assume your CSV has columns like:…