The example structure from the UIAA scale looks like this
CREATE TABLE `cot_uiaa` (
`cot_uiaa_id` int(7) NOT NULL auto_increment,
`cot_uiaa_rotsn` int(5) NOT NULL default '0',
`cot_uiaa_4min` int(3) NOT NULL default '0',
`cot_uiaa_4` int(3) NOT NULL default '0',
`cot_uiaa_4plus` int(3) NOT NULL default '0',
`cot_uiaa_5min` int(3) NOT NULL default '0',
`cot_uiaa_5` int(3) NOT NULL default '0',
`cot_uiaa_5plus` int(3) NOT NULL default '0',
`cot_uiaa_6min` int(3) NOT NULL default '0',
`cot_uiaa_6` int(3) NOT NULL default '0',
`cot_uiaa_6plus` int(3) NOT NULL default '0',
`cot_uiaa_7min` int(3) NOT NULL default '0',
`cot_uiaa_7` int(3) NOT NULL default '0',
`cot_uiaa_7plus` int(3) NOT NULL default '0',
`cot_uiaa_project` int(3) NOT NULL default '0',
PRIMARY KEY (`cot_uiaa_id`)
) TYPE=MyISAM COMMENT='Sportclimbing Grades of the International Alpine system' ;
After is I put only the amount of routes in my table.
The difference whit this table is the 1 - 1 relation.
By the britisch system there are two variables first the technical grade, second the difficulty grade.