MAX height

SELECT
  first_name,
  last_name,
  height
FROM patients
WHERE height = (
    SELECT max(height)
    FROM patients
  )


Why can't I just do WHERE height = MAX(height)
The questions wants me to return the first, last name and height of the person with the highest height
Was this page helpful?