general method would be to have 1 member table, 1 stats table that tracks stats by member_id
then to get a members stats, you just SELECT * from stats_Table where id=member_id
and it shouldnt be slow.... having a table for every member... would be DB intensive.... and slower in the long run I would think....