count(screenshots.screenshot_id) AS "totalScreenshots",
(select count(c.screenshot_id)
from "ccity"."screenshots" c
where c.user_id = "ccity"."screenshots".user_id
and c.answer_result = 10) AS
"rightAnswers",
(select count(c.screenshot_id)
from "ccity"."screenshots" c
where c.user_id =
"ccity"."screenshots".user_id
and c.answer_result != 0) AS "answerScreenshots"
FROM "ccity"."screenshots"
INNER JOIN
"public"."users" ON "ccity"."screenshots"."user_id" = "public"."users"."sso_id"
WHERE "game_id" = '0cd8ffd5-7827-4d8a-87aa-9aee10702b44'
GROUP BY "screenshots"."user_id", "sso_id"
LIMIT 6
я в последнее время больше стараюсь писать через WITH https://www.postgresql.org/docs/current/queries-with.html
Есть ли разница в скорости выполнения или так же будет?
(select count(c.screenshot_id) from "ccity"."screenshots" c where c.user_id = "ccity"."screenshots".user_id and c.answer_result = 10) заменить на sum(case when "ccity"."screenshots".answer_result = 10 then 1 else 0 end) AS "rightAnswers", Со вторым аналогично
Хм.... а это прикольно выглядит)) Спасибо!
Мало того, что прикольно выглядит, ещё и быстрее считает )))
разница есть. Точно не помню в чём. Но в основном я согласен с выводом: https://thoughtbot.com/blog/advanced-postgres-performance-tips Both Common Table Expressions and subqueries are useful, and one or the other may be more performant in a specific case. This is one example where subqueries are the better option, but I usually find that a CTE is as faster or better than a subquery and lean on them most of the time. Experiment with both forms in EXPLAIN ANALYZE to find the right tool for your query. CTE - проще читать и работают они не хуже, чем подзапросы
Подзапросы оптимизируются, CTE только в последних версиях научились этому в какой то степени.
Это да. только почему то не правильно. Пока не могу понять в чем дело.
Что неправильно? Ошибка или цифры неверные?
Цифры не верные
Обсуждают сегодня