Sql max () e min () em seleção aninhada

SELECT *
FROM Customers
WHERE age = (
    SELECT MIN(age)
    FROM Customers
);
SAMER SAEID