我有一个查询
select * from cp where customer_Id = ? order by date_created desc limit 1
我喜欢优化此查询的执行,为customer_Id
列创建索引。
问题:我的索引是否也包含date_created
列?
答案 0 :(得分:1)
总的来说,是的。如果可以,请将其作为降序列添加:
create index idx_cp_customerId_datecreated cp(customer_id, date_created desc)
请注意:
desc
选项。date_created
相比,此索引(对于您的查询)不会更差。