Hacker News new | ask | show | jobs
by unzadunza 1076 days ago

  select artist, sum(plays) from plays group by artist order by sum(plays) desc limit 40;
  ┌───────────────────────────────┬────────────┐
  │            artist             │ sum(plays) │
  │            varchar            │   int128   │
  ├───────────────────────────────┼────────────┤
  │ The Beatles                   │       2402 │
  │ Bob Dylan                     │        683 │
  │ Pink Floyd                    │        595 │
  │ Miles Davis                   │        580 │
  │ Duke Ellington                │        443 │
  │ Kenny Burrell                 │        339 │
  │ Vince Guaraldi                │        311 │
  │ Nightmares On Wax             │        297 │
  │ Rodriguez                     │        269 │
  │ Vince Guaraldi Trio           │        269 │
  │ John Lennon                   │        268 │
  │ Creedence Clearwater Revival  │        258 │
  │ Sonny Rollins                 │        223 │
  │ Bill Evans                    │        212 │
  │ Burning Spear                 │        210 │
  │ De La Soul                    │        201 │
  │                               │        201 │
  │ Radiohead                     │        194 │
  │ A Tribe Called Quest          │        190 │
  │ Led Zeppelin                  │        189 │
  │ Brad Mehldau                  │        188 │
  │ Martin Denny                  │        188 │
  │ Bob Marley                    │        178 │
  │ Paul Desmond & Gerry Mulligan │        161 │
  │ Charles Mingus                │        158 │
  │ Waylon Jennings               │        157 │
  │ Levi Clay                     │        149 │
  │ Marvin Gaye                   │        144 │
  │ Digable Planets               │        142 │
  │ Grateful Dead                 │        142 │
  │ John Coltrane                 │        137 │
  │ The Smiths                    │        136 │
  │ George Harrison               │        132 │
  │ Dimitri From Paris            │        124 │
  │ Dave Brubeck Quartet          │        121 │
  │ Cannonball Adderley           │        117 │
  │ Thievery Corporation          │        115 │
  │ Tommy Flanagan                │        112 │
  │ The B-52's                    │        109 │
  │ Royal Philharmonic Orchestra  │        109 │
  ├───────────────────────────────┴────────────┤
  │ 40 rows                          2 columns │
  └────────────────────────────────────────────┘
Guess I'm a Beatles fan!