辅助关键字搜索的索引结构

问题描述 投票:0回答:2

我有一个表(文章)具有以下结构:

id int(10) unsigned not_null auto_increment
title varchar(32)
system_id int(10) unsigned default 0
last_update int(10) unsigned default 0

表的推荐索引结构是什么,它将为此查询提供最佳性能:

"SELECT * FROM Articles where system_id = {ID} order by last_update desc"
mysql indexing database-performance query-performance
2个回答
1
投票

正如讨论qazxsw poi,从qazxsw poi专栏(qazxsw poi)开始,然后有“范围”专栏(here):

=

1
投票

我会添加这两个索引并检查EXPLAIN计划以查看它们中的哪些使用。 MySQL有时会选择排序索引而不是过滤索引,因此在某些情况下,第二个可能更好。

system_id
© www.soinside.com 2019 - 2024. All rights reserved.