SQL Max () et Min () dans Nested Select

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