Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个单一的表数据存储,其中包含整数、小数、日期、varchar 字段。我想通过使用该表的视图在逻辑上分离数据存储中的数据。这样 datastore.i1 变为 view.field1 datastorei2 变为 view.field2 等等......数据存储区中有提供“视图键”的索引。
这种方法对性能有影响吗?
是的,当然存在性能问题。这篇文章可以阐明这个问题 - MySQL 性能博客。
作为一种解决方法 - 您可以将数据拆分为两个物理表(一对一关系)。