How do I convert an interval into a number of hours with postgres?

前端 未结 6 852
心在旅途
心在旅途 2020-11-28 22:31

Say I have an interval like

4 days 10:00:00

in postgres. How do I convert that to a number of hours (106 in this case?) Is there a function

6条回答
  •  抹茶落季
    2020-11-28 22:47

             select date 'now()' - date '1955-12-15';
    

    Here is the simple query which calculates total no of days.

提交回复
热议问题