I have table with some data, for example
ID Specified TIN Value
----------------------
1       0   tin1   45
2       1   tin1   34
3       0   tin2   23
4       3   tin2   47
5       3   tin2   12
I need to get rows with all fields by MAX(Specified) column. And if I have few row with MAX column (in example ID 4 and 5) i must take last one (with ID 5) finally the result must be
ID Specified TIN Value
-----------------------    
2       1   tin1   34
5       3   tin2   12
 
     
     
    