I am in the design stages for building a Car Racing game. Each user can have up to a 100 cars, where each car has its data stored within a record found in my Car Table. The fields within the table include:
<car_id, user_id, top_speed, colour, handling, acceleration ...>
-Where the user_id is a foreign key mapping to the car's owner.
My question: Is it ok for this simple design to store all of my users' cars within a single table? Lets say the app is successful and has around 10,000 users each having 100 cars. That would be 1,000,000 records in my car table. Is it an issue with regards to performance ? Can I help performance through the database's design?
Lastly, I plan to use MySQL as my DBMS.


0to100. Will car id#5 have the same specs for each player? Because in that case you could have a single cars table for all users and just link to the car table from the user's table. – JakeParis Jan 31 at 18:41