M
Mario
Let's say I have a table like this
Name |Maths |Science |English
-------------------------------
David |45 |65 |43
Mathew |78 |87 |67
Tom |56 |73 |74
Jeena |34 |91 |98
I want to find the maximum mark scored by a student. That
is in this case.
David - 65
Mathew - 87 and so on.,
I have tried MAX, DMAX, MAXD and LARGE Fucntions. They
didnt work.
I used the querry
SELECT Students_Marks.*, MAX(Math,Science,English) AS
MAX_MARK
FROM Students_Marks;
I keep getting the error "Wrong number of arguments used
with function in querry expression 'MAX
(Math,Science,English)'
Please Help.
Name |Maths |Science |English
-------------------------------
David |45 |65 |43
Mathew |78 |87 |67
Tom |56 |73 |74
Jeena |34 |91 |98
I want to find the maximum mark scored by a student. That
is in this case.
David - 65
Mathew - 87 and so on.,
I have tried MAX, DMAX, MAXD and LARGE Fucntions. They
didnt work.
I used the querry
SELECT Students_Marks.*, MAX(Math,Science,English) AS
MAX_MARK
FROM Students_Marks;
I keep getting the error "Wrong number of arguments used
with function in querry expression 'MAX
(Math,Science,English)'
Please Help.