user8662191
user8662191

Reputation:

Should I create a database by project or group them in one

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

Answers (1)

Rick James
Rick James

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

Related Questions