I have a table with 2 values: MAC and ID.
One ID can have multiple MAC's. For Example:
I added a column Count, which counts the number of ID's:
My end goal is to have the MAC's split up like this:
I THINK I'm on the right track using case statements:
select count, ID,
MAC1 = case
when count >0 then min(MAC) end,
MAC2 = case
when count = 2 then max(MAC) end,
MAC3 = case
when count = 3 then max(MAC) end,
MAC4 = case
when count = 4 then max(MAC) end from MACTABLE
But that obviously gives me results like this:
So my question is this: How do I get MAC2, MAC3, etc if the count is more than 2? Is there a selected index type function? Am I way overthinking this? The MAC's don't need to be in a specific order, that's just the best way that I could think to do this. Any help is appreciated.
Recommended way for expanding it out to MAC_N: