SQL max () und min () in verschachtelter Auswahl

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