i have mssql tabel like this >
ID Code Rating
1 10 4
2 10 5
3 10 4
4 11 2
5 11 3
The sql query logic i want ...
I want when i search the record using code 10 then the output would be 4 because the 4 rating would be given most of the time for code 10 ....
and another logic if i search for code 11 then the out put will be 3 because 3 will be most recent rate for code 11...
how to write the sql query for im using ASP.NET ( VB)