Sql max () y min () en selección anidada

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