Sql max () dan min () di Nested Select

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