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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 7, 20262026-06-07T23:49:49+00:00 2026-06-07T23:49:49+00:00

I have a table called quotes: id date content 80 2012-06-03 This is the

  • 0

I have a table called quotes:

id date       content
80 2012-06-03 This is the first quote.
81 2012-06-05 Lorem Ipsum.

And a table called ratings:

rid uid qid rating
1   4   80  -1
2   4   81  1

The uid field refers to the logged-in user that made that rating. The quotes website is only available to logged-in users, and I want to be able to display quotes to the current user, including information indicating the quote’s current rating, whether or not they have rated the quote, and if so, what they rated it as. Ratings can either be -1 or 1. Quotes are not associated with the user who submitted them.

If I want to fetch just one quote, I execute this query (e.g. quote 80 and user 4):

SELECT
  q.id AS qid, q.content, q.date,
  COALESCE(SUM(r.rating), 0) AS rating,
    (SELECT COALESCE(rating, 0) FROM ratings WHERE qid = 80 AND uid = 4 LIMIT 1)
      AS user_rated
  FROM quotes q
  LEFT JOIN ratings r ON q.id = r.qid
  WHERE q.id = 80
  GROUP BY q.id

How would I modify that to display more than one quote (i.e. not just quote ID 80), but keep the user_rated and rating info?

Thanks a lot!

  • 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-07T23:49:50+00:00Added an answer on June 7, 2026 at 11:49 pm
    SELECT
      q.id AS qid,
      q.content,
      q.date,
      COALESCE(SUM(r.rating), 0) AS rating,
      COALESCE(SUM(IF(r.uid = 4, r.rating, NULL)), 0) AS user_rated
    FROM quotes q
    LEFT JOIN ratings r ON q.id = r.qid
    GROUP BY q.id
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a table in Oracle called quotes with two columns: date and value
I have table called Direccion other called Cliente each one defined like this public
Heres my problem. I have a mysql table called quotes. In one of the
I have a table called Quotes in linq-to-sql that contains 2 columns: author and
I have table called location with a field area. This field can contain various
I have table called comments with following structure: id | entry_id | date |
(This project is all written in JS) So, I have a table called paid_offers
I have a table called Visits : ID(PKey,Int) PatiendID(int), DoctorID(int), ExpectedDate(date), ActualDate(date), How can
I have table called stats . In am inserting yes or no in the
i have table called as Support, which have a field named Name and contains

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.