Baselight

ICC Cricket World Cup Centuries

List of Centuries Scored at the World Cup

@kaggle.kabhishm_icc_cricket_world_cup_centuries

Worldcup Centuries
@kaggle.kabhishm_icc_cricket_world_cup_centuries.worldcup_centuries

  • 15.95 KB
  • 196 rows
  • 12 columns
player

Player

runs

Runs

balls

Balls

n_4s

4s

n_6s

6s

s_r

S/R

team

Team

opposition

Opposition

venue

Venue

date

Date

result

Result

not_out

Not Out

Dennis Amiss1371471893.19EnglandIndiaLord's, London7 June 1975Won
Glenn Turner17120116285.07New ZealandEast AfricaEdgbaston Cricket Ground, Birmingham7 June 1975Won1
Keith Fletcher1311471389.11EnglandNew ZealandTrent Bridge, Nottingham11 June 1975Won
Alan Turner1011139189.38AustraliaSri LankaThe Oval, London11 June 1975Won
Glenn Turner1141771364.4New ZealandIndiaOld Trafford Cricket Ground, Manchester14 June 1975Won1
Clive Lloyd10285122120West IndiesAustraliaLord's, London21 June 1975Won
Gordon Greenidge1061739161.27West IndiesIndiaEdgbaston Cricket Ground, Birmingham9 June 1979Won1
Viv Richards13815711387.89West IndiesEnglandLord's, London23 June 1979Won1
Allan Lamb10210512297.14EnglandNew ZealandThe Oval, London9 June 1983Won
David Gower130120125108.33EnglandSri LankaCounty Ground, Taunton11 June 1983Won

CREATE TABLE worldcup_centuries (
  "player" VARCHAR,
  "runs" BIGINT,
  "balls" BIGINT,
  "n_4s" BIGINT,
  "n_6s" BIGINT,
  "s_r" DOUBLE,
  "team" VARCHAR,
  "opposition" VARCHAR,
  "venue" VARCHAR,
  "date" VARCHAR,
  "result" VARCHAR,
  "not_out" BIGINT
);

Share link

Anyone who has the link will be able to view this.