select nome, data_de_nascimento,
case
when
year(data_de_nascimento) < 1990 then 'VELHO'
when year(data_de_nascimento) >= 1990 and year(data_de_nascimento) <= 1995 then 'JOVENS'
else 'CRIANÇAS'
end as status_cliente from tabela_de_clientes;