Advertisement
timbreynolds

4-round competitions 2019

Nov 19th, 2019
203
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MySQL 4.33 KB | None | 0 0
  1. mysql> select competitionId, eventId, count(distinct roundTypeId) as rounds, count(distinct personId) as people from Results join Competitions on Results.competitionId=Competitions.id where Competitions.year=2019 group by 1,2 having rounds=4 order by eventId asc, people desc;
  2. +-------------------------------+---------+--------+--------+
  3. | competitionId                 | eventId | rounds | people |
  4. +-------------------------------+---------+--------+--------+
  5. | CubingUSANationals2019        | 222     |      4 |    661 |
  6. | ChinaChampionship2019         | 222     |      4 |    601 |
  7. | Shenzhen10thAnniversary2019   | 222     |      4 |    237 |
  8. | CanadianChampionship2019      | 222     |      4 |    168 |
  9. | ZhongshanChildrensDay2019     | 222     |      4 |    165 |
  10. | SwedishChampionship2019       | 222     |      4 |    151 |
  11. | Xian10thAnniversary2019       | 222     |      4 |    121 |
  12. | NordicChampionship2019        | 222     |      4 |    106 |
  13. | ChinaChampionship2019         | 333     |      4 |    843 |
  14. | WC2019                        | 333     |      4 |    807 |
  15. | CubingUSANationals2019        | 333     |      4 |    738 |
  16. | Shenzhen10thAnniversary2019   | 333     |      4 |    425 |
  17. | ZhongshanChildrensDay2019     | 333     |      4 |    367 |
  18. | UKChampionship2019            | 333     |      4 |    280 |
  19. | IndianNationals2019           | 333     |      4 |    262 |
  20. | SmartcubeFestKyiv2019         | 333     |      4 |    252 |
  21. | GermanNationals2019           | 333     |      4 |    232 |
  22. | MunichOpen2019                | 333     |      4 |    211 |
  23. | Xian10thAnniversary2019       | 333     |      4 |    210 |
  24. | PeruNationals2019             | 333     |      4 |    191 |
  25. | CanadianChampionship2019      | 333     |      4 |    182 |
  26. | SwedishChampionship2019       | 333     |      4 |    178 |
  27. | ItalianChampionship2019       | 333     |      4 |    178 |
  28. | FrenchChampionship2019        | 333     |      4 |    178 |
  29. | LondonOpen2019                | 333     |      4 |    176 |
  30. | GreatLakesChampionship2019    | 333     |      4 |    175 |
  31. | SlowNSteadySummer2019         | 333     |      4 |    161 |
  32. | BudapestOpen2019              | 333     |      4 |    156 |
  33. | KoreanChampionship2019        | 333     |      4 |    145 |
  34. | ReturntoToronto2019           | 333     |      4 |    141 |
  35. | LvivSpringDays2019            | 333     |      4 |    140 |
  36. | AjaxWinter2019                | 333     |      4 |    137 |
  37. | Indiana2019                   | 333     |      4 |    130 |
  38. | HungarianOpen2019             | 333     |      4 |    129 |
  39. | HighWycombeOpen2019           | 333     |      4 |    129 |
  40. | Shenzhen3x3Days2019           | 333     |      4 |    128 |
  41. | NacionalesMedellinExplora2019 | 333     |      4 |    126 |
  42. | NordicChampionship2019        | 333     |      4 |    124 |
  43. | MelbourneSummer2019           | 333     |      4 |    123 |
  44. | NationalCapitalRegion2019     | 333     |      4 |    117 |
  45. | OculusCubeOpen2019            | 333     |      4 |    116 |
  46. | HamburgInternational2019      | 333     |      4 |    111 |
  47. | KoalaficationBrisbane2019     | 333     |      4 |    110 |
  48. | SpanishChampionship2019       | 333     |      4 |    108 |
  49. | Ayase2019                     | 333     |      4 |    107 |
  50. | BUWinter2019                  | 333     |      4 |    107 |
  51. | KjellerOpen2019               | 333     |      4 |    106 |
  52. | PolishChampionship2019        | 333     |      4 |    104 |
  53. | ElsassOpen2019                | 333     |      4 |    102 |
  54. | Cubetcha2019                  | 333     |      4 |    101 |
  55. | MichiganCubingClubBeta2019    | 333     |      4 |    101 |
  56. | NorwegianChampionship2019     | 333     |      4 |    100 |
  57. | ChinaChampionship2019         | 333oh   |      4 |    242 |
  58. | CanadianChampionship2019      | 333oh   |      4 |    122 |
  59. | CubingUSANationals2019        | 444     |      4 |    367 |
  60. | ChinaChampionship2019         | 444     |      4 |    263 |
  61. | ChinaChampionship2019         | pyram   |      4 |    425 |
  62. | CubingUSANationals2019        | pyram   |      4 |    424 |
  63. | Shenzhen10thAnniversary2019   | pyram   |      4 |    144 |
  64. | SwedishChampionship2019       | pyram   |      4 |    125 |
  65. | ChinaChampionship2019         | skewb   |      4 |    227 |
  66. | SwedishChampionship2019       | skewb   |      4 |    105 |
  67. +-------------------------------+---------+--------+--------+
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement