mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-05-08 06:37:26 -05:00
25 lines
444 B
SQL
25 lines
444 B
SQL
select
|
|
"Badge"."code",
|
|
"Badge"."displayName",
|
|
"Badge"."id",
|
|
"Badge"."hue",
|
|
count("BadgeOwner"."badgeId") as count
|
|
from
|
|
"BadgeOwner"
|
|
join "Badge" on "Badge"."id" = "BadgeOwner"."badgeId"
|
|
where
|
|
"BadgeOwner"."userId" = @userId
|
|
group by
|
|
"BadgeOwner"."badgeId",
|
|
"BadgeOwner"."userId"
|
|
order by
|
|
"Badge"."id" = (
|
|
select
|
|
"favoriteBadgeId"
|
|
from
|
|
"User"
|
|
where
|
|
"id" = @userId
|
|
) desc,
|
|
"Badge"."id" asc
|