Reputation:
I'm creating few little projects (more or less 10 tables by project), should I create a database for each projects? or group them in one database?
Upvotes: 1
Views: 468
Reputation: 142306
MySQL does not care. You can always do ... FROM dbname.tblname ...
if you need to reach across db boundaries.
For your own sanity, make it one project per database, especially if they share nothing.
Upvotes: 1