The difference between the two dates in PostgreSQL










0














Is there an equivalent to this T-SQL command in PostgreSQL?



SELECT COUNT(*) 
FROM [dbo].[LayerTable]
where layerType=3
and created >= Dateadd(Month, Datediff(Month, 0, DATEADD(m, -6, current_timestamp))),0)


I have found date_part() and extract function() but not working.










share|improve this question



















  • 1




    No everybody that knows Postgres will know what that T-SQL query is doing. Can you explain in words what the dateadd() function is doing? Does it add six months to current_timestamp?
    – a_horse_with_no_name
    Nov 12 at 7:11











  • DATEADD (datepart , number , date ) : Returns a new datetime value by adding an interval to the specified datepart of the specified date. DATEDIFF ( datepart , startdate , enddate ) : Returns the number of date or time datepart boundaries, crossed between two specified dates.
    – Onur Ek.
    Nov 12 at 7:14











  • Your SQL seems to be invalid: When I run select Dateadd(Month, Datediff(Month, 0, DATEADD(m, -6, current_timestamp)))) I get an error "The dateadd function requires 3 argument(s).": dbfiddle.uk/…
    – a_horse_with_no_name
    Nov 12 at 7:14










  • Im so so Sorry. select Dateadd(Month, Datediff(Month, 0, DATEADD(m, -6, current_timestamp)),0)
    – Onur Ek.
    Nov 12 at 7:17















0














Is there an equivalent to this T-SQL command in PostgreSQL?



SELECT COUNT(*) 
FROM [dbo].[LayerTable]
where layerType=3
and created >= Dateadd(Month, Datediff(Month, 0, DATEADD(m, -6, current_timestamp))),0)


I have found date_part() and extract function() but not working.










share|improve this question



















  • 1




    No everybody that knows Postgres will know what that T-SQL query is doing. Can you explain in words what the dateadd() function is doing? Does it add six months to current_timestamp?
    – a_horse_with_no_name
    Nov 12 at 7:11











  • DATEADD (datepart , number , date ) : Returns a new datetime value by adding an interval to the specified datepart of the specified date. DATEDIFF ( datepart , startdate , enddate ) : Returns the number of date or time datepart boundaries, crossed between two specified dates.
    – Onur Ek.
    Nov 12 at 7:14











  • Your SQL seems to be invalid: When I run select Dateadd(Month, Datediff(Month, 0, DATEADD(m, -6, current_timestamp)))) I get an error "The dateadd function requires 3 argument(s).": dbfiddle.uk/…
    – a_horse_with_no_name
    Nov 12 at 7:14










  • Im so so Sorry. select Dateadd(Month, Datediff(Month, 0, DATEADD(m, -6, current_timestamp)),0)
    – Onur Ek.
    Nov 12 at 7:17













0












0








0







Is there an equivalent to this T-SQL command in PostgreSQL?



SELECT COUNT(*) 
FROM [dbo].[LayerTable]
where layerType=3
and created >= Dateadd(Month, Datediff(Month, 0, DATEADD(m, -6, current_timestamp))),0)


I have found date_part() and extract function() but not working.










share|improve this question















Is there an equivalent to this T-SQL command in PostgreSQL?



SELECT COUNT(*) 
FROM [dbo].[LayerTable]
where layerType=3
and created >= Dateadd(Month, Datediff(Month, 0, DATEADD(m, -6, current_timestamp))),0)


I have found date_part() and extract function() but not working.







sql postgresql date-arithmetic






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 12 at 7:18

























asked Nov 12 at 7:09









Onur Ek.

206




206







  • 1




    No everybody that knows Postgres will know what that T-SQL query is doing. Can you explain in words what the dateadd() function is doing? Does it add six months to current_timestamp?
    – a_horse_with_no_name
    Nov 12 at 7:11











  • DATEADD (datepart , number , date ) : Returns a new datetime value by adding an interval to the specified datepart of the specified date. DATEDIFF ( datepart , startdate , enddate ) : Returns the number of date or time datepart boundaries, crossed between two specified dates.
    – Onur Ek.
    Nov 12 at 7:14











  • Your SQL seems to be invalid: When I run select Dateadd(Month, Datediff(Month, 0, DATEADD(m, -6, current_timestamp)))) I get an error "The dateadd function requires 3 argument(s).": dbfiddle.uk/…
    – a_horse_with_no_name
    Nov 12 at 7:14










  • Im so so Sorry. select Dateadd(Month, Datediff(Month, 0, DATEADD(m, -6, current_timestamp)),0)
    – Onur Ek.
    Nov 12 at 7:17












  • 1




    No everybody that knows Postgres will know what that T-SQL query is doing. Can you explain in words what the dateadd() function is doing? Does it add six months to current_timestamp?
    – a_horse_with_no_name
    Nov 12 at 7:11











  • DATEADD (datepart , number , date ) : Returns a new datetime value by adding an interval to the specified datepart of the specified date. DATEDIFF ( datepart , startdate , enddate ) : Returns the number of date or time datepart boundaries, crossed between two specified dates.
    – Onur Ek.
    Nov 12 at 7:14











  • Your SQL seems to be invalid: When I run select Dateadd(Month, Datediff(Month, 0, DATEADD(m, -6, current_timestamp)))) I get an error "The dateadd function requires 3 argument(s).": dbfiddle.uk/…
    – a_horse_with_no_name
    Nov 12 at 7:14










  • Im so so Sorry. select Dateadd(Month, Datediff(Month, 0, DATEADD(m, -6, current_timestamp)),0)
    – Onur Ek.
    Nov 12 at 7:17







1




1




No everybody that knows Postgres will know what that T-SQL query is doing. Can you explain in words what the dateadd() function is doing? Does it add six months to current_timestamp?
– a_horse_with_no_name
Nov 12 at 7:11





No everybody that knows Postgres will know what that T-SQL query is doing. Can you explain in words what the dateadd() function is doing? Does it add six months to current_timestamp?
– a_horse_with_no_name
Nov 12 at 7:11













DATEADD (datepart , number , date ) : Returns a new datetime value by adding an interval to the specified datepart of the specified date. DATEDIFF ( datepart , startdate , enddate ) : Returns the number of date or time datepart boundaries, crossed between two specified dates.
– Onur Ek.
Nov 12 at 7:14





DATEADD (datepart , number , date ) : Returns a new datetime value by adding an interval to the specified datepart of the specified date. DATEDIFF ( datepart , startdate , enddate ) : Returns the number of date or time datepart boundaries, crossed between two specified dates.
– Onur Ek.
Nov 12 at 7:14













Your SQL seems to be invalid: When I run select Dateadd(Month, Datediff(Month, 0, DATEADD(m, -6, current_timestamp)))) I get an error "The dateadd function requires 3 argument(s).": dbfiddle.uk/…
– a_horse_with_no_name
Nov 12 at 7:14




Your SQL seems to be invalid: When I run select Dateadd(Month, Datediff(Month, 0, DATEADD(m, -6, current_timestamp)))) I get an error "The dateadd function requires 3 argument(s).": dbfiddle.uk/…
– a_horse_with_no_name
Nov 12 at 7:14












Im so so Sorry. select Dateadd(Month, Datediff(Month, 0, DATEADD(m, -6, current_timestamp)),0)
– Onur Ek.
Nov 12 at 7:17




Im so so Sorry. select Dateadd(Month, Datediff(Month, 0, DATEADD(m, -6, current_timestamp)),0)
– Onur Ek.
Nov 12 at 7:17












1 Answer
1






active

oldest

votes


















1














Looks like this is simply subtracting 6 months from current_timestamp, so the equivalent would be:



SELECT COUNT(*) 
FROM dbo.layer_table
where layer_type=3
and created >= current_timestamp - interval '6 months';


If you want the start of the month (rather than the "same" day as "today") as the result use:



created >= date_trunc('month', current_timestamp - interval '6 months')





share|improve this answer




















    Your Answer






    StackExchange.ifUsing("editor", function ()
    StackExchange.using("externalEditor", function ()
    StackExchange.using("snippets", function ()
    StackExchange.snippets.init();
    );
    );
    , "code-snippets");

    StackExchange.ready(function()
    var channelOptions =
    tags: "".split(" "),
    id: "1"
    ;
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function()
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled)
    StackExchange.using("snippets", function()
    createEditor();
    );

    else
    createEditor();

    );

    function createEditor()
    StackExchange.prepareEditor(
    heartbeatType: 'answer',
    autoActivateHeartbeat: false,
    convertImagesToLinks: true,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    imageUploader:
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    ,
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    );



    );













    draft saved

    draft discarded


















    StackExchange.ready(
    function ()
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53257345%2fthe-difference-between-the-two-dates-in-postgresql%23new-answer', 'question_page');

    );

    Post as a guest















    Required, but never shown

























    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    1














    Looks like this is simply subtracting 6 months from current_timestamp, so the equivalent would be:



    SELECT COUNT(*) 
    FROM dbo.layer_table
    where layer_type=3
    and created >= current_timestamp - interval '6 months';


    If you want the start of the month (rather than the "same" day as "today") as the result use:



    created >= date_trunc('month', current_timestamp - interval '6 months')





    share|improve this answer

























      1














      Looks like this is simply subtracting 6 months from current_timestamp, so the equivalent would be:



      SELECT COUNT(*) 
      FROM dbo.layer_table
      where layer_type=3
      and created >= current_timestamp - interval '6 months';


      If you want the start of the month (rather than the "same" day as "today") as the result use:



      created >= date_trunc('month', current_timestamp - interval '6 months')





      share|improve this answer























        1












        1








        1






        Looks like this is simply subtracting 6 months from current_timestamp, so the equivalent would be:



        SELECT COUNT(*) 
        FROM dbo.layer_table
        where layer_type=3
        and created >= current_timestamp - interval '6 months';


        If you want the start of the month (rather than the "same" day as "today") as the result use:



        created >= date_trunc('month', current_timestamp - interval '6 months')





        share|improve this answer












        Looks like this is simply subtracting 6 months from current_timestamp, so the equivalent would be:



        SELECT COUNT(*) 
        FROM dbo.layer_table
        where layer_type=3
        and created >= current_timestamp - interval '6 months';


        If you want the start of the month (rather than the "same" day as "today") as the result use:



        created >= date_trunc('month', current_timestamp - interval '6 months')






        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Nov 12 at 7:16









        a_horse_with_no_name

        291k46444537




        291k46444537



























            draft saved

            draft discarded
















































            Thanks for contributing an answer to Stack Overflow!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid


            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.

            To learn more, see our tips on writing great answers.





            Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


            Please pay close attention to the following guidance:


            • Please be sure to answer the question. Provide details and share your research!

            But avoid


            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.

            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53257345%2fthe-difference-between-the-two-dates-in-postgresql%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            這個網誌中的熱門文章

            Barbados

            How to read a connectionString WITH PROVIDER in .NET Core?

            Node.js Script on GitHub Pages or Amazon S3