Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8168169
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T20:25:50+00:00 2026-06-06T20:25:50+00:00

I am able to retrieve the sum/total sales for all items in a particular

  • 0

I am able to retrieve the sum/total sales for all items in a particular week using the code below.

select week(real_pur_date) as week, itemcode, sum(quantity)
from sales
where week(real_pur_date) = week(20120620)
group by itemcode;

The output is:

+------+----------+---------------+
| week | itemcode | sum(quantity) |
+------+----------+---------------+
|   25 | KB001    |            11 |
|   25 | KB002    |             2 |
|   25 | KB003    |             3 |
+------+----------+---------------+

which is what I wanted

The question is how can I query MySql to return the range of dates in week 25 back into the result table?
For example,
1. range of dates in week 24 is 10-06-2012 to 16-06-2012.
2. range of dates in week 25 is 17-06-2012 to 23-06-2012.

Thanks in advance.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-06T20:25:52+00:00Added an answer on June 6, 2026 at 8:25 pm

    I’m not a MySQL guy so I had to try to convert from SQL Server functions. But, the basic math is there. I’ll let you determine how you want to pass or calculate @YEARSTART and @YEAREND.

    DECLARE @YEARSTART datetime, @YEAREND datatime
    SET @YEARSTART='1/1/2012'
    SET @YEAREND = '12/31/2012'
    
    SELECT A.week, CASE WHEN (@YEARSTART + INTERVAL (8-DAYOFWEEK(@STARTYEAR)+(week-2)*7) DAY) < @YEARSTART 
                     THEN @YEARSTART
                     ELSE (@YEARSTART + INTERVAL (8-DAYOFWEEK(@STARTYEAR)+(week-2)*7) DAY) 
                   END AS WeekStart,
                   CASE WHEN (@YEARSTART + INTERVAL (7-DAYOFWEEK(@STARTYEAR)+(week-1)*7) DAY) > @YEAREND
                     THEN @YEAREND
                     ELSE (@YEARSTART + INTERVAL (7-DAYOFWEEK(@STARTYEAR)+(week-1)*7) DAY)
                   END AS WeekEnd,
          A.itemcode, A.SumQty 
    FROM
    (
    select week(real_pur_date) as week, itemcode, sum(quantity) AS SumQty
    from sales
    where week(real_pur_date) = week(20120620)
    group by itemcode
    ) AS A
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Using the following code in my controller, I am able to retrieve all rows
I am able to retrieve all contacts from android in .vcf file using following
I'm able to retrieve the display name of contact using the id Code as
I was able to retrieve all the web application names within a farm using
Right now I am able to retrieve the network status using the following code..
I'm able to retrieve the current location in my iPad application using, CLLocation *location
Currently I am able to retrieve data from a MySQL db by using HTTP
1) Is the Admob SDK able to retrieve all the text strings shown in
I am able to retrieve the latlng of a particular place in google map
I'm able to retrieve contact's phone number from the device using Address Book framework

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.