Điều này rất dễ thực hiện lại trong PostgreSQL chỉ bằng cách sử dụng các hàm SQL để dọn dẹp những gì bạn đã có:
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)))
$$;
Và bây giờ select months_between('1978-06-20', '2011-12-09')
sản xuất 401.