Last active
January 13, 2018 18:10
-
-
Save michie1/6cee50e863ddb50bd9a8a0444dd94f86 to your computer and use it in GitHub Desktop.
wtos punten per categorie
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
select count(*) as aantal, wedstrijden.w_soort from uitslagen inner join wedstrijden on uitslagen.w_id=wedstrijden.w_id where uitslagen.u_datum >= '2017-01-01' and wedstrijden.w_zichtbaar = true group by w_soort order by aantal desc; | |
+--------+----------------------------+ | |
| aantal | w_soort | | |
+--------+----------------------------+ | |
| 99 | Trainingskoers | | |
| 77 | Criterium | | |
| 42 | Klassieker | | |
| 29 | Zondagmorgencompetitie | | |
| 27 | Omloop | | |
| 27 | Veldrit nationaal | | |
| 21 | Studentencup | | |
| 20 | Regiocross | | |
| 19 | NSK | | |
| 16 | WTOS evenement | | |
| 15 | Meerdaagse, Criterium | | |
| 14 | Meerdaagse, Etappe | | |
| 11 | Cyclosportieve | | |
| 10 | Meerdaagse, Etappe >100km | | |
| 8 | Meerdaagse, Tijdrit | | |
| 7 | MTB Nationaal | | |
| 7 | NK | | |
| 6 | DK | | |
| 5 | Meerdaagse, Ploegentijdrit | | |
| 4 | Meerdaagse, AK | | |
| 3 | Overig | | |
| 3 | Toertocht | | |
| 1 | Veldtoertocht | | |
| 1 | Tijdrit | | |
+--------+----------------------------+ | |
24 rows in set (0.01 sec) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment