MySQL: Many tables or many databases?

前端 未结 9 496
陌清茗
陌清茗 2020-11-30 20:40

For a project we having a bunch of data that always have the same structure and is not linked together. There are two approaches to save the data:

  • Creating a n
9条回答
  •  -上瘾入骨i
    2020-11-30 21:03

    Given the restrictions you've placed on it, I'd rather spin up more tables in the existing database, rather than having to connect to multiple databases. Managing connection strings TEND to be harder, in addition to managing the different database optimizations you may have.

提交回复
热议问题