2
Reply

A table student_marks contain the following data: ID NAME MARKS 1 A 90 2 B 65 3 C 70 4 D 81 What will be output of the following sql query? SELECT TOp 1 MARKS FROM student_marks WHERE MARKS <(SELECT MAX(MARKS) FROM student_marks) a) 81 b) 70 c) 65 d) 90