Skip to content
Advertisement

Aggregating data with SQL if other values in rows meet certain criteria

I’m pretty new to SQL and am trying to figure out if there’s a way to aggregate the date into new column. For instance, below is a sample set of date. I want to take all the type ‘2’ and create new columns

So instead of having it like above, it would be like

Is there a way to do this in SQL? I thought maybe using IF statements within a case statement? I’m not asking for it to be done for me, more of looking for specifics that I can read about to make this happen. Thank you!

Advertisement

Answer

It seems like you want:

I am not sure what logic you want for column Mem in the resulset. It that’s just a row number, then:

We could put the conditional expression on type inside the aggregate function, but it does not really make sense since you are grouping by type already. In that case, that would be:

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