10 lines
247 B
SQL
10 lines
247 B
SQL
SELECT
|
|
organization_id,
|
|
`rank` AS final_rank,
|
|
total_points,
|
|
prize_money_usd,
|
|
tournament_wins,
|
|
top_8_finishes,
|
|
CASE WHEN eligible_to_win = 1 THEN 1 ELSE 0 END AS eligible_to_win
|
|
FROM club_championship_standing;
|