In Access 2003, I have a table with two columns, in addition to the primary key ID columns. First column contains students' names and second column contains students marks. I am trying to create a query which would display name and marks highest scoring student. When I use MAX or MIN (for lowest scoring student) query displays only marks, and does not display the students name.
2007-08-13
08:49:44
·
4 answers
·
asked by
szhob
3
in
Computers & Internet
➔ Programming & Design
select max(marks) displays only marks. I want to display corresponding name too.
2007-08-13
09:47:32 ·
update #1