select nome AS "CLIENTE", year(data_de_nascimento) as "DATA DE NASCIMENTO", case when YEAR(data_de_nascimento) <= 1990 then 'VELHOS' when year(data_de_nascimento) > 1990 and year(data_de_nascimento) <= 1995 then 'JOVENS' else 'CRIANÇAS' end as "CLASSIFICAÇÃO" FROM tabela_de_clientes group by nome, YEAR(data_de_nascimento) order by YEAR(data_de_nascimento);