Powerlifting Database
Approximately 48,000 meets. 800,000 lifters from competitions worldwide
@kaggle.open_powerlifting_powerlifting_database
Approximately 48,000 meets. 800,000 lifters from competitions worldwide
@kaggle.open_powerlifting_powerlifting_database
This dataset is a snapshot of the OpenPowerlifting database as of January 2024. OpenPowerlifting is creating a public-domain archive of powerlifting history. Powerlifting is a sport in which competitors compete to lift the most weight for their class in three separate barbell lifts: the Squat, Bench, and Deadlift.
The data is represented by openpowerlifting.csv, which includes all information on the meets (competitions) as well as the competitors who attended those meets.
Version 1 of this dataset included two files: meets.csv and openpowerlifting.csv. meets.csv is a record of all meets (competitions) included in the OpenPowerlifting database. openpowerlifting.csv is a record of all competitors who attended those meets, and the stats and lifts that they recorded at them.
In Version 2+, meets.csv has been subsumed by openpowerlifting.csv, which contains the same information.
For more on how this dataset was collected, see the OpenPowerlifting FAQ.
This dataset is republished as-is from the OpenPowerlifting source.
Please address all issues or questions about the data to: issues@openpowerlifting.org
CREATE TABLE openpowerlifting (
  "name" VARCHAR,
  "sex" VARCHAR,
  "event" VARCHAR,
  "equipment" VARCHAR,
  "age" DOUBLE,
  "ageclass" VARCHAR,
  "division" VARCHAR,
  "bodyweightkg" DOUBLE,
  "weightclasskg" VARCHAR,
  "squat1kg" DOUBLE,
  "squat2kg" DOUBLE,
  "squat3kg" DOUBLE,
  "squat4kg" DOUBLE,
  "best3squatkg" DOUBLE,
  "bench1kg" DOUBLE,
  "bench2kg" DOUBLE,
  "bench3kg" DOUBLE,
  "bench4kg" DOUBLE,
  "best3benchkg" DOUBLE,
  "deadlift1kg" DOUBLE,
  "deadlift2kg" DOUBLE,
  "deadlift3kg" DOUBLE,
  "deadlift4kg" DOUBLE,
  "best3deadliftkg" DOUBLE,
  "totalkg" DOUBLE,
  "place" VARCHAR,
  "wilks" DOUBLE,
  "mcculloch" DOUBLE,
  "glossbrenner" DOUBLE,
  "ipfpoints" DOUBLE,
  "tested" VARCHAR,
  "country" VARCHAR,
  "federation" VARCHAR,
  "date" TIMESTAMP,
  "meetcountry" VARCHAR,
  "meetstate" VARCHAR,
  "meetname" VARCHAR
);CREATE TABLE openpowerlifting_2024_01_06_4c732975 (
  "name" VARCHAR,
  "sex" VARCHAR,
  "event" VARCHAR,
  "equipment" VARCHAR,
  "age" DOUBLE,
  "ageclass" VARCHAR,
  "birthyearclass" VARCHAR,
  "division" VARCHAR,
  "bodyweightkg" DOUBLE,
  "weightclasskg" VARCHAR,
  "squat1kg" DOUBLE,
  "squat2kg" DOUBLE,
  "squat3kg" DOUBLE,
  "squat4kg" DOUBLE,
  "best3squatkg" DOUBLE,
  "bench1kg" DOUBLE,
  "bench2kg" DOUBLE,
  "bench3kg" DOUBLE,
  "bench4kg" DOUBLE,
  "best3benchkg" DOUBLE,
  "deadlift1kg" DOUBLE,
  "deadlift2kg" DOUBLE,
  "deadlift3kg" DOUBLE,
  "deadlift4kg" DOUBLE,
  "best3deadliftkg" DOUBLE,
  "totalkg" DOUBLE,
  "place" VARCHAR,
  "dots" DOUBLE,
  "wilks" DOUBLE,
  "glossbrenner" DOUBLE,
  "goodlift" DOUBLE,
  "tested" VARCHAR,
  "country" VARCHAR,
  "state" VARCHAR,
  "federation" VARCHAR,
  "parentfederation" VARCHAR,
  "date" TIMESTAMP,
  "meetcountry" VARCHAR,
  "meetstate" VARCHAR,
  "meettown" VARCHAR,
  "meetname" VARCHAR
);Anyone who has the link will be able to view this.