I need help in modeling a query as I am unable to do it.
My data is:
id name school height
1 A S1 10
2 B S1 12
3 C S1 14
4 D S2 15
5 E S2 16
6 F S2 17
I want to select the name and the name with median height per school.
Expected output:
id name school myval
1 A S1 B
2 B S1 B
3 C S1 B
4 D S2 E
5 E S2 E
6 F S2 E
Here, person B has the median height in school S1 and E has in S2.
I know we can get median using percentile. But I am not able to figure out how to select the value per partition basis.
This gives the median column