Hi,
I'm planning the db-design for an online-game and ask myself, whether it is better to have one table with the player-id as key and very many data-fields or some tables each with only some data-fields.
Using MySQL:
Does it need longer to get a result from a table with many columns even if I specify the columns I need?
Does an update-query need longer?
Let's say there are 200 players online at one time, everybody sending one request per second and every request leads to data-manipulations in three tables / in one table with many columns:
Can a normal web-server handle the higher number of queries resulting from the higher nunber of tables without a recognizable decrease of speed?
[I'm using PHP and the PEAR-DataObject-Abstraction.]
Thank you for your help!
EDIT: Changed "rows" to "columns" (-> I'm German ... sorry for that

)