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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T14:00:34+00:00 2026-05-15T14:00:34+00:00

I have two tables, sales and costs, each with a costs fields, and a

  • 0

I have two tables, sales and costs, each with a costs fields, and a date field of type date.

The rest of the fields are not relevant for what I want to do.

I want to take the totals of each month, and display them together.

I am unsure if most of this should be done in SQL, if it must be one or several queries, of if I must manipulate the data in PHP…

  • 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-15T14:00:35+00:00Added an answer on May 15, 2026 at 2:00 pm

    Try this two queries for each table.

    SELECT month(date_field), SUM(cost_field)
    FROM Costs 
    GROUP BY month(date_field)
    
    SELECT month(date_field), SUM(cost_field)
    FROM Sales
    GROUP BY month(date_field)
    

    This is for each month.

    Do you need the same list with totals for each year?

    In that case it would be almost the same query

    SELECT year(date_field), SUM(cost_field)
    FROM Costs 
    GROUP BY year(date_field)
    
    SELECT year(date_field), SUM(cost_field)
    FROM Sales
    GROUP BY year(date_field)
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have two mysql tables - a sales table: +----------------+------------------------------+------+-----+---------+-------+ | Field | Type
A common (i assume?) type of query: I have two tables ('products', 'productsales'). Each
I have two tables, Sales (ISBN, Sale_Time, [Sale Data Fields]) and Affiliate_Sales (ISBN, Affiliate_Sale-Time,
I have two tables: Sales.SalesOrderHeader(SalesOrderID(PK), SalesOrderNumber, Status,..) Sales.SalesOrderDetail(SalesOrderID(PK,FK), ..) I've declared a variable @numdetail
I have two tables: CREATE TABLE 'sales_sheet' ( `_id` int(11) NOT NULL AUTO_INCREMENT, `_typed_by`
I have two tables with the following schema: CREATE TABLE sales_data ( sales_time date
I have two tables: one contains employees information and another is transactions (sales) information
I have two tables Table1 and Table2. There are 10 fields in Table1 and
I have two tables: DIM_Staff and FACT_Sales I want to update [e-mail] to FACT_Sales
I have two tables. In one table we enter all types of Models, each

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.