mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-05-06 21:34:28 -05:00
14 lines
298 B
SQL
14 lines
298 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" |