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 422633
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T19:06:02+00:00 2026-05-12T19:06:02+00:00

I have a table schema which is essentially a bunch of transaction info with

  • 0

I have a table schema which is essentially a bunch of transaction info with a datetime field

TRANSACTION (< transactionid >, amount, when)

I need to generate a monthly total of transactions, which is SUM(amount), but I stumped by what do I group by. Each row from SQL should contain the monthly total (so one row for Jan 09, Feb 09….Jan 2010 and so on). I am thinking that I may have to generate the table by code, but would like to learn if there is a way to resolve this using SQL.

Any help would be appreciated! (Using MySQL 5.3, PHP5)

  • 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-05-12T19:06:02+00:00Added an answer on May 12, 2026 at 7:06 pm

    You need to group by extracts.

    SELECT 
        SUM(amount)
    FROM 
        transaction
    GROUP BY 
        EXTRACT(MONTH FROM when),
        EXTRACT(YEAR FROM when)
    

    And if you need those columns, then

    SELECT
        EXTRACT(MONTH FROM when) as month, 
        EXTRACT(YEAR FROM when) as year, 
        SUM(amount)
    FROM 
        transaction
    GROUP BY 
        month,
        year
    

    Of course you can append ORDER BY and use short names too:

    SELECT 
        EXTRACT(MONTH FROM when) as month, 
        EXTRACT(YEAR FROM when) as year, 
        SUM(amount)
    FROM 
        transaction
    GROUP BY 
        month, 
        year
    ORDER BY 
        year DESC, 
        month DESC
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a table schema which has some meta field data which I need
We have a bunch of XML files, following a schema which is essentially a
I have a table which have schema like this id name 1 jack 2
Say I have this table schema. ID AccNo Amount Say I have this data
I have a DataSet with multiple tables (distinct schema). I want to generate table
I have recently updated my table schema to include a new column, which has
I have a table which has an IDENTITY field and a VARBINARY(MAX) field in
I have a table which stores bookings of rooms, the schema is: ID |
I have a table in a Rails application which (in schema.rb) looks like: create_table
I have the following table schema which maps user_customers to permissions on a live

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.