SQL dowolne z operatorami porównawczymi

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