How to calculate DATE Difference in PostgreSQL?

后端 未结 4 1402
既然无缘
既然无缘 2021-02-01 16:23

Here I need to calculate the difference of the two dates in the PostgreSQL.

In SQL Server: Like we do in SQL Server its muc

4条回答
  •  长发绾君心
    2021-02-01 17:24

    CAST both fields to datatype DATE and you can use a minus:

    (CAST(MAX(joindate) AS date) - CAST(MIN(joindate) AS date)) as DateDifference
    

    Test case:

    SELECT  (CAST(MAX(joindate) AS date) - CAST(MIN(joindate) AS date)) as DateDifference
    FROM 
        generate_series('2014-01-01'::timestamp, '2014-02-01'::timestamp, interval '1 hour') g(joindate);
    

    Result: 31

    Or create a function datediff():

    CREATE OR REPLACE FUNCTION datediff(timestamp, timestamp) 
    RETURNS int 
    LANGUAGE sql 
    AS
    $$
        SELECT CAST($1 AS date) - CAST($2 AS date) as DateDifference
    $$;
    

提交回复
热议问题