一個文章表的 MySQL 索引怎麼建立合理

lmxdawn發表於2018-12-03

有如下結構的MySQL 表

CREATE TABLE `t_article` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `content` varchar(255) NOT NULL COMMENT '內容',
  `like_count` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '點贊數',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8 COMMENT='文章表';
複製程式碼

插入資料:

INSERT INTO `t_article` (`id`, `content`, `like_count`) VALUES ('1', 'aaa', '4');
INSERT INTO `t_article` (`id`, `content`, `like_count`) VALUES ('2', 'rrrr', '53');
INSERT INTO `t_article` (`id`, `content`, `like_count`) VALUES ('3', 'ttt', '7');
INSERT INTO `t_article` (`id`, `content`, `like_count`) VALUES ('4', 'rree', '6');
INSERT INTO `t_article` (`id`, `content`, `like_count`) VALUES ('5', 'rrr', '888');

複製程式碼

需求是查詢文章列表,根據點贊數(like_count)欄位從大到小排序,SQL 語句如下:

SELECT id FROM t_article ORDER BY like_count DESC LIMIT 0,4;
複製程式碼

怎麼建立索引才合理,問題原由是看了很多大佬文章都會說索引欄位不應該頻繁更新,但是 like_count 這個欄位肯定是經常更新的,

另外還有個衍生問題,如下SQL 執行的分析 type 為 index 有沒有毛病,這個SQL沒有用 where 條件,沒有用 排序欄位,但是還是會進行全表掃描,又該怎麼優化呢

SELECT id FROM t_article LIMIT 0,4;
複製程式碼

EXPLAIN 分析

donate

相關文章