답변:
select age(timestamp_A, timestamp_B)
Igor의 의견에 대한 답변 :
select age('2013-02-28 11:01:28'::timestamp, '2011-12-31 11:00'::timestamp);
age
-------------------------------
1 year 1 mon 28 days 00:01:28
Subtract arguments, producing a "symbolic" result that uses years and months
입니다. 초 단위로 차이를주지 않습니다.
to get the difference between these timestamps in seconds
. 그리고 it should include hours, minutes etc
그것은 10:25:30 - 10:15:25 = 605 seconds
. 내 추측 – 그는 사용 EXTRACT(SECONDS FROM ...)
하고 얻었습니다10:25:30 - 10:15:25 = 5 seconds