SQL query Monthly Sales Amount

Source: Internet
Author: User

SQL data is divided into monthly statistics, the table only the daily data, now requires a year of the monthly statistics (a SQL )

SELECT
The field of that date),
Like sales or something)
From
Table
WHERE
Let's say you want to check it out. Monthly statistics of the year. 
GROUP by
field of that date)


------------------------------------------------------------

1. Every year
Select year (ordertime),
SUM (total) Sales totals
From order Form
Group by year (Ordertime)

2. Monthly
Select year (ordertime),
Month (Ordertime),
SUM (total) Sales totals
From order Form
Group by year (Ordertime),
Month (ordertime

3. Daily
Select year (ordertime),
Month (Ordertime),
Day (Ordertime),
SUM (total) Sales totals
From order Form
Group by year (Ordertime),
Month (Ordertime),
Day (Ordertime)

In addition the daily can also be like this:
Select CONVERT (char (8), ordertime,112) DT,
SUM (total) Sales totals
From order Form
Group by CONVERT (char (8), ordertime,112)

SQL query Monthly Sales Amount

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.