Answer the question
In order to leave comments, you need to log in
How to write such a SQL query?
I have 3 tables: users, articles and likes.
Their structures are:
users: id, ...
articles: id, author_id, ...
likes: article_id, user_id, liked
I need to write a SQL query to get all the articles of a given author_id, tagging those that the user with id X likes. That is, the response should contain data on ALL articles by the author author_id and the liked field which will be = 1 (if the user with id X liked this article) and 0 (if he did not like it).
I tried to do like this:
SELECT articles.id, articles.title, likes.liked FROM articles LEFT JOIN likes ON likes.user_id = X AND likes.article_id = articles.id WHERE articles.author_id = Y
Answer the question
In order to leave comments, you need to log in
The answer was given on stackoverflow.
Decision:
SELECT
a.id, a.title,
(SELECT
count(*)
FROM likes l
WHERE l.user_id = <пользователь_X>
and l.article_id = a.id) liked_cnt
FROM articles a
WHERE a.author_id = <определнный_автор>
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question