операторы сравнения SQL
> Greater than
< Less than
>= Greater than or equal to
<= Less than or equal to
<> Not equal to
DevLorenzo
> Greater than
< Less than
>= Greater than or equal to
<= Less than or equal to
<> Not equal to
SELECT *
FROM Teachers
WHERE age < ANY (
SELECT age
FROM Students
);