Computer Science, asked by Ravigah3455, 1 year ago

How to select only rows where a column value is maximum?

Answers

Answered by mkabusaad
0

Suppose you have a table called students contains Student Name, English Mark & Math Mark and you need to select the student with the highest mark in English.

SELECT *

FROM Students

where EnglishMark=

(select Max(EnglishMark) from Students) ;


Similar questions