Skip to content Skip to sidebar Skip to footer

How Can I Get An Even Distribution Using Where Id In(1,2,3,4)

I have a query that is pulling users who liked a specific object from a users table. Ratings are stored in a ratings table. The query I have come up with so far looks like this: SE

Solution 1:

By setting the row number whit variables, and then filter that result to show only row 1-3 should work

SET @last_objectId = 0;
SET @count_objectId = 0;
SELECT id, name, image FROM (
SELECT
 user.id,
 user.name,
 user.image,
 @count_objectId := IF(@last_objectId = rating.objectId, @count_objectId, 0) + 1 AS rating_row_number,
 @last_objectId := rating.objectId
FROM users
LEFT JOIN ratings ON (ratings.userid = user.id)
WHERE
 rating.rating > 0 AND
 rating.objectId IN (1,2,3,4)
ORDER BY rating.objectId
) AS subquery WHERE rating_row_number <= 3;

Post a Comment for "How Can I Get An Even Distribution Using Where Id In(1,2,3,4)"