1
resposta

Desafio: classificando os clientes

select 
    nome,
(case when LIMITE_DE_CREDITO > = 150000 then 'Clientes Grandes'
     when LIMITE_DE_CREDITO >= 110000 and LIMITE_DE_CREDITO < 150000 then 'Clientes Médios'
     when LIMITE_DE_CREDITO < 110000 then 'Clientes Pequenos'
    end) Classificaçao_clientes


from TABELA_DE_CLIENTES
1 resposta

Olá, Jhonatan, tudo bem?

Mandou muito bem resolvendo o desafio proposto.

Continue assim e bons estudos!