PostgreSQL
 sql >> Base de Dados >  >> RDS >> PostgreSQL

Função de meses entre duas datas


Isso é fácil de reimplementar no PostgreSQL apenas usando funções SQL para arrumar o que você já tem:
create function months_of(interval)
 returns int strict immutable language sql as $$
  select extract(years from $1)::int * 12 + extract(month from $1)::int
$$;

create function months_between(date, date)
 returns int strict immutable language sql as $$
   select abs(months_of(age($1, $2)))
$$;

E agora select months_between('1978-06-20', '2011-12-09') produz 401.