I'm creating a user-based website. For each user, I'll need a few mySQL tables to store different types of information (ie userInfo, quotesSubmitted, ratesSubmitted). Is it a better idea to:
a) Create one database for the site (ie "mySite") and then hundreds or thousands of tables inside this (ie "userInfo_bob", "quotessubmitted_bob", "userInfo_shelly", "quotesSubmitted_shelly")
or
b) Create hundreds or thousands of databases (ie "Bob", "Shelly", etc) and only a couple tables per database (ie Inside of "Bob": userInfo, quotesSubmitted, ratesSubmitted, etc)
Should I use one database, and many tables in that database, or many databases and few tables per database?
Edit:
The problem is that I need to keep track of who has rated what. That means if a user has rated 300 quotes, I need to be able to know exactly which quotes the user has rated.
Maybe I should do this?
One table for quotes...One table to list users... ONe table to document ALL ratings that have been made (ie Three columns: User, Quote, rating). That seems reasonable... is there any problem with that?
