RANKING IN VB.NET MYSQL
-
I have Records which are supposed to be assigned Position/Be Ranked e.g RegNo Marks Position 1 300 3 301 4 403 5 345 My Problem is How to rank/give position according to marks attained such that the results will be displayed as: RegNo Marks Position 1 300 4 3 301 3 4 403 1 5 345 2 using VB.NET MYSQL
-
I have Records which are supposed to be assigned Position/Be Ranked e.g RegNo Marks Position 1 300 3 301 4 403 5 345 My Problem is How to rank/give position according to marks attained such that the results will be displayed as: RegNo Marks Position 1 300 4 3 301 3 4 403 1 5 345 2 using VB.NET MYSQL
KipkoechE wrote:
how i will generate the position based on marks
Probably by some calculation and sorting. But if you want some more useful help then please edit your question and explain the problem in proper detail. Also, is this really a Database question or a VB one?
-
KipkoechE wrote:
how i will generate the position based on marks
Probably by some calculation and sorting. But if you want some more useful help then please edit your question and explain the problem in proper detail. Also, is this really a Database question or a VB one?
I have Records which are supposed to be assigned Position/Be Ranked e.g RegNo Marks Position 1 300 3 301 4 403 5 345 My Problem is How to rank/give position according to marks attained such that the results will be displayed as: RegNo Marks Position 1 300 4 3 301 3 4 403 1 5 345 2 using VB.NET MYSQL
-
I have Records which are supposed to be assigned Position/Be Ranked e.g RegNo Marks Position 1 300 3 301 4 403 5 345 My Problem is How to rank/give position according to marks attained such that the results will be displayed as: RegNo Marks Position 1 300 4 3 301 3 4 403 1 5 345 2 using VB.NET MYSQL
-
You don't need the position field as that depends on the Marks. Just select your data using the ORDER BY clause[^] to sort them.
-
I have Records which are supposed to be assigned Position/Be Ranked e.g RegNo Marks Position 1 300 3 301 4 403 5 345 My Problem is How to rank/give position according to marks attained such that the results will be displayed as: RegNo Marks Position 1 300 4 3 301 3 4 403 1 5 345 2 using VB.NET MYSQL
-
-