I am working on a PHP web application with a backend MySQL Database. Long story short, each user has 50 characteristics that NEED to be stored.
To make the queries as fast and efficient as possible, should I give each user their own table with 1 column and 50 rows OR should I put all users in one table with 51 columns (1 for username, 50 for the characteristic variables).
These are the only two solutions I have come up with. Any other advice would be greatly appreciated! Thank you in advance.