select distinct a.* from ( select a.racer_no, POINTS(a.racer_no, a.class_raced) as tot_points from sorcs_db.race_results a where (a.race_date between '2013-01-01' and '2013-12-31') and (a.class_raced = '') and (substr(a.name,1,10) <> ' ') and (race not like '%Team Race%') and (a.race like 'Round%') ) a order by a.tot_points desc
* = best 11 races will be counted for series points. Must have 9 races to qualify for series trophy.