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 | |
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
module Foo exposing (..) | |
import Json.Decode exposing (..) | |
import Json.Decode.Pipeline exposing (..) | |
type alias Boat = | |
{ color : Maybe Color | |
} |