select nome, year([data de nascimento]) as [Ano de nascimento],
case
when year([data de nascimento]) < 1990 then 'Adulto'
when year([data de nascimento]) >= 1990 and year([data de nascimento]) <= 1995 then 'Jovem'
else 'Criança'
end as [faixa etaria]
from [TABELA DE CLIENTES]
group by nome, [DATA DE NASCIMENTO]
order by [DATA DE NASCIMENTO]