假设我有与此类似的多态性
| document_id | owner_type | owner_id |
| 1 | Client | 1 |
| 1 | Client | 2 |
| 2 | User | 1 |
我知道我会打电话查询寻找owner_type
和owner_type
+owner_id
SELECT * FROM document_name_ownerships WHERE owner_type = 'Client`
SELECT * FROM document_name_ownerships WHERE owner_type = 'Client` and owner_id = 1
让我们忽略如何索引document_id
我想知道在这个 SQL 场景中索引所有者列的最佳方法(性能)是什么
解决方案1:
CREATE INDEX do_type_id_ix ON document_ownerships (owner_type, owner_id)
这样,我将只有一个适用于两种情况的索引
解决方案2:
CREATE INDEX do_id_type_ix ON document_ownerships (owner_id, owner_type)
CREATE INDEX do_type_ix ON document_ownerships (owner_type)
这样,我将拥有完全匹配我将如何使用数据库的方式的索引。唯一的问题是我只有一个索引时有 2 个索引
解决方案3:
CREATE INDEX do_id_ix ON document_ownerships (owner_id)
CREATE INDEX do_type_ix ON document_ownerships (owner_type)
单个列索引
从我在 MySQL 控制台中探索的结果来看,explain
我得到了非常相似的结果,因为它是一个新项目,我没有足够的数据来正确探索这个,所以我可以 100% 确定(即使我用数百条记录填充了数据库)。那么任何人都可以根据他们的经验给我一些建议吗?