mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-05-06 13:19:31 -05:00
15 lines
233 B
SQL
15 lines
233 B
SQL
select
|
|
json_group_array("tier")
|
|
from
|
|
(
|
|
select
|
|
distinct "tier"
|
|
from
|
|
"PlusSuggestion"
|
|
where
|
|
"month" = @month
|
|
and "year" = @year
|
|
and "suggestedId" = @userId
|
|
order by
|
|
"tier" asc
|
|
) |