For each date, I need to return the ticker with the maximum value for example this is the data table:
dt_date ticker price 20121201 A 5 20121201 B 7 20121201 C 6 20121202 A 10 20121202 B 8 20121202 C 7
so my expected output would be
20121201 C 7 20121202 A 10
I've tried some stuff with max but not really getting anywhere, can anyone help? I'm using SQL server 2012 btw.
Thanks

cwith the price of7in the20121201date? butAis with10for20121202? I get the max price but how are you deciding the ticker? – bluefeet Feb 27 at 21:06