SQL n'importe quoi

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