Answer the question
In order to leave comments, you need to log in
Answer the question
In order to leave comments, you need to log in
It is possible so for example. Table for storing likes by post and user:
CREATE TABLE IF NOT EXISTS post_likes (
id integer primary key,
post_id integer, -- id поста
user_id integer, -- id пользователя
likes integer
);
select sum(likes) total_score, -- общий счет
sum(case likes when 1 then 1 end) sum_likes, -- кол-во лайков
sum(case likes when -1 then 1 end) sum_dislikes -- кол-во дизлайков
from post_likes where post_id = нужный_id_поста
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question