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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T05:35:54+00:00 2026-06-18T05:35:54+00:00

I have a fairly complicated SQL statement I am working on. Here is where

  • 0

I have a fairly complicated SQL statement I am working on. Here is where I am at:

 SELECT  c.category
              FROM master_cat as c
        LEFT JOIN
            (
                SELECT cat_id, user_id COUNT(cat_id) favoriteCat
                FROM ratings
                GROUP BY user_id
            ) a ON a.cat_id= c.cat_id
        LEFT JOIN users AS u  
            ON  u.user_id AND a.user_id

WHERE u.username = '{$user}' LIMIT 1

This statement is incomplete. I am missing a middle table here. cat_id is not actually in ratings. But items_id is from a table called items and cat_id is also in that table as well.

So what I am trying to do is this:

SELECT rating FROM ??? GROUP BY cat_id where u.user=$user

The only thing I can think of doing maybe is another LEFT join with items inside favoriteCat but I am not sure if that is allowed.

  • 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-18T05:35:56+00:00Added an answer on June 18, 2026 at 5:35 am

    I was overthinking this, here is my final solution:

    SELECT  c.category,   count(r.rating) AS totalCount
    FROM ratings as r
    LEFT JOIN items AS i
       ON i.items_id = r.item_id
    LEFT JOIN users AS u
       ON u.user_id = r.user_id
    LEFT JOIN master_cat AS c
       ON c.cat_id = i.cat_id
    WHERE  r.user_id = '{$user_id}'
    GROUP BY c.category
    ORDER BY totalCount DESC
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am working on a fairly complicated project. We have a c# forms app
I have a fairly complicated SQL query with a nested subquery. When I try
I have a SQL query that's fairly complicated and involves multiple subqueries and unions.
I have a fairly complicated problem. The usual markup (no problems here): <div class=wrapper>
I have a fairly complicated notification system that I am working on, it's quite
I have a fairly complicated join query that I use with my database. Upon
I have a fairly complicated installer that I'm writing in Wix that has a
I have a fairly straightforward Java class here which creates 2 thread pools.... Connects
I have a fairly simple query: SELECT invoice_id WHERE employee_id = 'XXXX' AND customer_id
I have a fairly complicated operation that I'm trying to perform with just one

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.