converter numero negativo

SQL

PostgreSQL

27/08/2019

bom dia, poderiam me ajudar, estou montando esse select e quero converter o numero negativo

select clie_nasc,
	DATE_PART('year', now()) - DATE_PART('year', clie_nasc) as anos,
	DATE_PART('month', now()) - DATE_PART('month', clie_nasc) as meses
from clientes limit 10
Luiz

Luiz

Curtidas 1

Melhor post

Emerson Nascimento

Emerson Nascimento

27/08/2019

select
   clie_nasc,
   DATE_PART('year', now()) - DATE_PART('year', clie_nasc) as anos,
   abs(DATE_PART('month', now()) - DATE_PART('month', clie_nasc)) as meses
from
   clientes
limit 10
GOSTEI 1

Mais Respostas

Emerson Nascimento

Emerson Nascimento

27/08/2019


se o converter significa retirar o sinal, no SQL Server você tem a função ABS()
GOSTEI 0
Luiz

Luiz

27/08/2019

beleza eu sei, quero saber como implementar essa função a minha query
GOSTEI 0
Luiz

Luiz

27/08/2019

cara, obrigado pela ajuda
GOSTEI 0
POSTAR