eyalsch / Rudolph-Tables-Calculator

The "Rudolph Table" is a table for swimming age-appropriate performance evaluation by Dr. Klaus Rudolph
1 stars 1 forks source link
php swimming

Rudolph Tables Calculator

The Rudolph tables are tables published each year by Prof. Klaus Rudolph for age-appropriate performance evaluation in swimming.

CREATE TABLE `rudolphScore` (
  `year` year(4) NOT NULL,
  `point` int(11) NOT NULL,
  `gender` char(1) COLLATE utf8_unicode_ci NOT NULL,
  `age` int(11) NOT NULL,
  `event` char(20) COLLATE utf8_unicode_ci NOT NULL,
  `result` time(2) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;