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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T18:41:26+00:00 2026-05-28T18:41:26+00:00

I have two tables on MySQL, with this structure: Users: id | name Accounts:

  • 0

I have two tables on MySQL, with this structure:

Users:
id | name

Accounts:
id | userid | amount

I need a query to get the total accounts for each user, with the user name in the result too. Is there a way to achieve this? I’ve tried subqueries in the from clause, and I don’t know how to use a join to achieve this, but I have my doubts if that may be the solution… Any ideas?

Here’s sample data and an example output I’m pretending to get:

Users
1 | 'John'
2 | 'Peter'

Accounts
1 | 1 | 1000
2 | 1 | 2000
3 | 2 | 1500

query:
'John'  | 2  <- there are 2 accounts for user 'John'
'Peter' | 1  <- there is only 1 account for user 'Peter'

Also, what if I like to have more summary data on my results? say… the total amounts. For example:

another query:
'John'  | 2 | 3000 <- 2 accounts for John, which sums 3000
'Peter' | 1 | 1500 <- 1 account for Peter, which sums 1500
  • 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-28T18:41:27+00:00Added an answer on May 28, 2026 at 6:41 pm

    Here’s a query to get the user’s name and the count of their accounts:

    SELECT u.name, COUNT(a.id) AS numAccounts
    FROM Users u
    LEFT JOIN Accounts a ON u.id=a.userid
    GROUP BY u.id;
    

    To get a sum of the amount column, you can do something like:

    SELECT u.name, COUNT(a.id) AS numAccounts, SUM(u.amount) AS totalAmount
    FROM Users u
    LEFT JOIN Accounts a ON u.id=a.userid
    GROUP BY u.id;
    
    • 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 that have the following structure: Table 1: ---ID---------NAME------- ---1-----
I have two tables in a MySql DB: items id (char) name (varchar) description
using php and mysql I have two tables, a users table and a profiles
I am newbee with PHP and MySQL and need help... I have two tables
I have two different tables, lead and click. I would like to query MySQL
I have two MySQL tables: house and features . This is for a real
I have a typical N-M relationship structure like this: two independent tables: Table Client:
I have two tables in my MySQL database, users and tweets, as follows: TABLE
I have two MySQL tables, with the following structure (I have removed irrelevant columns).
i have two mysql tables which are linked together and i need to show

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.