我们在 postgresql 中有一个表users (userid, username, category, pincode)
如果我们创建如下索引:
- 在用户上创建索引 category_idx(category);
- 在用户上创建索引 category_pincode_idx(category, pincode);
并将表用户查询为:
select * from users where category = somevalue;
将应用哪个索引?
我们在 postgresql 中有一个表users (userid, username, category, pincode)
如果我们创建如下索引:
并将表用户查询为:
select * from users where category = somevalue;
将应用哪个索引?