mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-05-06 05:07:36 -05:00
18 lines
477 B
SQL
18 lines
477 B
SQL
select
|
|
"PlusVotingResult"."wasSuggested",
|
|
"PlusVotingResult"."passedVoting",
|
|
"PlusVotingResult"."tier",
|
|
"PlusVotingResult"."score",
|
|
"User"."id",
|
|
"User"."discordAvatar",
|
|
"User"."discordDiscriminator",
|
|
"User"."discordName",
|
|
"User"."discordId"
|
|
from
|
|
"PlusVotingResult"
|
|
join "User" on "PlusVotingResult"."votedId" = "User".id
|
|
where
|
|
"PlusVotingResult"."month" = @month
|
|
and "PlusVotingResult"."year" = @year
|
|
order by
|
|
"User"."discordName" collate nocase asc |