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;