Last Day of Each Month Calculation The 2019 Stack Overflow Developer Survey Results Are In Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern) The Ask Question Wizard is Live! Data science time! April 2019 and salary with experienceGet Last Day of the Month in PythonCalculate last day of month in JavaScriptMySQL Query GROUP BY day / month / yearRetrieving the last record in each group - MySQLCalculate difference between two dates (number of days)?oracle month to dayAdding month to specific day of month with java.timeTSQL get last day of previous months upto a specified monthHow to get data from Jan to last month in current monthHow can I add whole months to a date?

Python - Fishing Simulator

60's-70's movie: home appliances revolting against the owners

Loose spokes after only a few rides

Did the UK government pay "millions and millions of dollars" to try to snag Julian Assange?

Working through the single responsibility principle (SRP) in Python when calls are expensive

Keeping a retro style to sci-fi spaceships?

The following signatures were invalid: EXPKEYSIG 1397BC53640DB551

Is it ethical to upload a automatically generated paper to a non peer-reviewed site as part of a larger research?

Didn't get enough time to take a Coding Test - what to do now?

Deal with toxic manager when you can't quit

Could an empire control the whole planet with today's comunication methods?

Simulating Exploding Dice

should truth entail possible truth

Using dividends to reduce short term capital gains?

Sort list of array linked objects by keys and values

What to do when moving next to a bird sanctuary with a loosely-domesticated cat?

Does Parliament hold absolute power in the UK?

How to politely respond to generic emails requesting a PhD/job in my lab? Without wasting too much time

Do ℕ, mathbbN, BbbN, symbbN effectively differ, and is there a "canonical" specification of the naturals?

How to read αἱμύλιος or when to aspirate

Example of compact Riemannian manifold with only one geodesic.

1960s short story making fun of James Bond-style spy fiction

How to support a colleague who finds meetings extremely tiring?

Does Parliament need to approve the new Brexit delay to 31 October 2019?



Last Day of Each Month Calculation



The 2019 Stack Overflow Developer Survey Results Are In
Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)
The Ask Question Wizard is Live!
Data science time! April 2019 and salary with experienceGet Last Day of the Month in PythonCalculate last day of month in JavaScriptMySQL Query GROUP BY day / month / yearRetrieving the last record in each group - MySQLCalculate difference between two dates (number of days)?oracle month to dayAdding month to specific day of month with java.timeTSQL get last day of previous months upto a specified monthHow to get data from Jan to last month in current monthHow can I add whole months to a date?



.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








-1















I have a table X which holds data for each day for a brand. The data for each day is cumulative i.e. sales data for 3 will have data for 1, 2 and 3. Thus data for the last day of each month will be the sales for that month for that brand and company. I want to get the sum of all the sales for that brand for the last 3 months excluding the current month on the last day of each month.
i.e for March: I want sales from 31st Jan 2019 + 28th Feb 2019 + 31st Dec 2018 for each brand and company.
How can I achieve this?










share|improve this question

















  • 2





    If you want all the code to be written by someone, you can bargain freelancers hopefully. Otherwise, please share what you've tried.

    – vahdet
    Mar 22 at 6:11






  • 1





    Include sample data and expected output.

    – Joakim Danielson
    Mar 22 at 7:24











  • Welcome to SO! Could you please show us what you've tried so far? This seems like a homework question.

    – WynDiesel
    Mar 22 at 11:41

















-1















I have a table X which holds data for each day for a brand. The data for each day is cumulative i.e. sales data for 3 will have data for 1, 2 and 3. Thus data for the last day of each month will be the sales for that month for that brand and company. I want to get the sum of all the sales for that brand for the last 3 months excluding the current month on the last day of each month.
i.e for March: I want sales from 31st Jan 2019 + 28th Feb 2019 + 31st Dec 2018 for each brand and company.
How can I achieve this?










share|improve this question

















  • 2





    If you want all the code to be written by someone, you can bargain freelancers hopefully. Otherwise, please share what you've tried.

    – vahdet
    Mar 22 at 6:11






  • 1





    Include sample data and expected output.

    – Joakim Danielson
    Mar 22 at 7:24











  • Welcome to SO! Could you please show us what you've tried so far? This seems like a homework question.

    – WynDiesel
    Mar 22 at 11:41













-1












-1








-1








I have a table X which holds data for each day for a brand. The data for each day is cumulative i.e. sales data for 3 will have data for 1, 2 and 3. Thus data for the last day of each month will be the sales for that month for that brand and company. I want to get the sum of all the sales for that brand for the last 3 months excluding the current month on the last day of each month.
i.e for March: I want sales from 31st Jan 2019 + 28th Feb 2019 + 31st Dec 2018 for each brand and company.
How can I achieve this?










share|improve this question














I have a table X which holds data for each day for a brand. The data for each day is cumulative i.e. sales data for 3 will have data for 1, 2 and 3. Thus data for the last day of each month will be the sales for that month for that brand and company. I want to get the sum of all the sales for that brand for the last 3 months excluding the current month on the last day of each month.
i.e for March: I want sales from 31st Jan 2019 + 28th Feb 2019 + 31st Dec 2018 for each brand and company.
How can I achieve this?







sql sql-server date






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Mar 22 at 5:49









rahulrahul

1




1







  • 2





    If you want all the code to be written by someone, you can bargain freelancers hopefully. Otherwise, please share what you've tried.

    – vahdet
    Mar 22 at 6:11






  • 1





    Include sample data and expected output.

    – Joakim Danielson
    Mar 22 at 7:24











  • Welcome to SO! Could you please show us what you've tried so far? This seems like a homework question.

    – WynDiesel
    Mar 22 at 11:41












  • 2





    If you want all the code to be written by someone, you can bargain freelancers hopefully. Otherwise, please share what you've tried.

    – vahdet
    Mar 22 at 6:11






  • 1





    Include sample data and expected output.

    – Joakim Danielson
    Mar 22 at 7:24











  • Welcome to SO! Could you please show us what you've tried so far? This seems like a homework question.

    – WynDiesel
    Mar 22 at 11:41







2




2





If you want all the code to be written by someone, you can bargain freelancers hopefully. Otherwise, please share what you've tried.

– vahdet
Mar 22 at 6:11





If you want all the code to be written by someone, you can bargain freelancers hopefully. Otherwise, please share what you've tried.

– vahdet
Mar 22 at 6:11




1




1





Include sample data and expected output.

– Joakim Danielson
Mar 22 at 7:24





Include sample data and expected output.

– Joakim Danielson
Mar 22 at 7:24













Welcome to SO! Could you please show us what you've tried so far? This seems like a homework question.

– WynDiesel
Mar 22 at 11:41





Welcome to SO! Could you please show us what you've tried so far? This seems like a homework question.

– WynDiesel
Mar 22 at 11:41












2 Answers
2






active

oldest

votes


















0














if you are using MSSQL you can use EOMONTH function, example is as under



DECLARE @date VARCHAR(255) = '2/24/2019'; 
SELECT EOMONTH ( @date ) AS Result;


for MySQL you can use LAST_DAY function



SELECT LAST_DAY('2019-02-24');





share|improve this answer






























    0














    Let's say name of your column representing the sales date is "sales_date", then the following predicate will give you the days you're interested in:



    sales_date in (
    dateadd(day, -1, dateadd(month, datediff(month, 0, getdate()) - 2, 0)),
    dateadd(day, -1, dateadd(month, datediff(month, 0, getdate()) - 1, 0)),
    dateadd(day, -1, dateadd(month, datediff(month, 0, getdate()), 0))
    )





    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%2f55293611%2flast-day-of-each-month-calculation%23new-answer', 'question_page');

      );

      Post as a guest















      Required, but never shown

























      2 Answers
      2






      active

      oldest

      votes








      2 Answers
      2






      active

      oldest

      votes









      active

      oldest

      votes






      active

      oldest

      votes









      0














      if you are using MSSQL you can use EOMONTH function, example is as under



      DECLARE @date VARCHAR(255) = '2/24/2019'; 
      SELECT EOMONTH ( @date ) AS Result;


      for MySQL you can use LAST_DAY function



      SELECT LAST_DAY('2019-02-24');





      share|improve this answer



























        0














        if you are using MSSQL you can use EOMONTH function, example is as under



        DECLARE @date VARCHAR(255) = '2/24/2019'; 
        SELECT EOMONTH ( @date ) AS Result;


        for MySQL you can use LAST_DAY function



        SELECT LAST_DAY('2019-02-24');





        share|improve this answer

























          0












          0








          0







          if you are using MSSQL you can use EOMONTH function, example is as under



          DECLARE @date VARCHAR(255) = '2/24/2019'; 
          SELECT EOMONTH ( @date ) AS Result;


          for MySQL you can use LAST_DAY function



          SELECT LAST_DAY('2019-02-24');





          share|improve this answer













          if you are using MSSQL you can use EOMONTH function, example is as under



          DECLARE @date VARCHAR(255) = '2/24/2019'; 
          SELECT EOMONTH ( @date ) AS Result;


          for MySQL you can use LAST_DAY function



          SELECT LAST_DAY('2019-02-24');






          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Mar 22 at 7:32









          VirenViren

          11




          11























              0














              Let's say name of your column representing the sales date is "sales_date", then the following predicate will give you the days you're interested in:



              sales_date in (
              dateadd(day, -1, dateadd(month, datediff(month, 0, getdate()) - 2, 0)),
              dateadd(day, -1, dateadd(month, datediff(month, 0, getdate()) - 1, 0)),
              dateadd(day, -1, dateadd(month, datediff(month, 0, getdate()), 0))
              )





              share|improve this answer



























                0














                Let's say name of your column representing the sales date is "sales_date", then the following predicate will give you the days you're interested in:



                sales_date in (
                dateadd(day, -1, dateadd(month, datediff(month, 0, getdate()) - 2, 0)),
                dateadd(day, -1, dateadd(month, datediff(month, 0, getdate()) - 1, 0)),
                dateadd(day, -1, dateadd(month, datediff(month, 0, getdate()), 0))
                )





                share|improve this answer

























                  0












                  0








                  0







                  Let's say name of your column representing the sales date is "sales_date", then the following predicate will give you the days you're interested in:



                  sales_date in (
                  dateadd(day, -1, dateadd(month, datediff(month, 0, getdate()) - 2, 0)),
                  dateadd(day, -1, dateadd(month, datediff(month, 0, getdate()) - 1, 0)),
                  dateadd(day, -1, dateadd(month, datediff(month, 0, getdate()), 0))
                  )





                  share|improve this answer













                  Let's say name of your column representing the sales date is "sales_date", then the following predicate will give you the days you're interested in:



                  sales_date in (
                  dateadd(day, -1, dateadd(month, datediff(month, 0, getdate()) - 2, 0)),
                  dateadd(day, -1, dateadd(month, datediff(month, 0, getdate()) - 1, 0)),
                  dateadd(day, -1, dateadd(month, datediff(month, 0, getdate()), 0))
                  )






                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered Mar 22 at 10:52









                  hanspohanspo

                  16




                  16



























                      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.




                      draft saved


                      draft discarded














                      StackExchange.ready(
                      function ()
                      StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55293611%2flast-day-of-each-month-calculation%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







                      Popular posts from this blog

                      Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

                      Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

                      Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript