What I want to do should really be basic but for some reason I can't figure it out. Consider the following:
ID, COL1, COL2
1 'A' NULL
1 NULL 'B'
I want to group on ID and 'squeeze out' the gaps and get:
ID, COL1, COL2
1 'A' 'B'
I'm probably having a black out as this sounds a very sqly problem/solution. This on a very large data set with many rows and columns so efficiency would be important
1, 'C', 'C'?