Skip
Arish's avatar

78. Practice - MAX with Filter


Exercise: Maximum in Python

Find highest marks among Python students.

Solution

sql
1SELECT MAX(marks) FROM students
2WHERE course = 'Python';