I am building an application and I was curious if I am better off querying results or inserting them into the database. What I mean is I have a racing league and I want to track stats (wins, races, dnfs...). So for example, am I better off inserting a win into a stats table or querying the win from the race results? I am anticipating a lot of race results so I was wondering the best/fastest way to get around this.
Any help is appreciated, thanks.