SQL Setiap dan semua dengan operator perbandingan

SELECT * 
FROM Teachers
WHERE age < ANY (
  SELECT age
  FROM Students
);
SAMER SAEID