九色91_成人精品一区二区三区中文字幕_国产精品久久久久一区二区三区_欧美精品久久_国产精品99久久久久久久vr_www.国产视频

Hello! 歡迎來到小浪云!


使用 explain 如何判斷二級索引使用后是否回表?


avatar
小浪云 2024-11-12 206

使用 explain 如何判斷二級索引使用后是否回表?

如何使用 explain 判斷二級索引使用后,是否存在回表操作?

對于給定的查詢 sql

select     track_source_id,     date_format(created_at, '%y-%m-%d') as day,     count(*) as total_count,     sum(case when len_parse_result_list = 0 then 1 else 0 end) as len_parse_result_list_zero_count,     sum(case when len_parse_result_list is null then 1 else 0 end) as len_parse_result_list_null_count,     sum(case when len_parse_result_list > 0 then 1 else 0 end) as len_parse_result_list_gte_zero_count from     keywordtask where     created_at >= now() - interval 30 day group by     track_source_id,     day order by     track_source_id,     day;
登錄后復制

其 explain 輸出:

| id | select_type | table | partitions | type | possible_keys | key | key_len | ref | rows | filtered | Extra | | --- | ----------- | ----- | ---------- | ---- | ------------- | --- | ------ | --- | ---- | -------- | ----- | | 1   | SIMPLE      | keywordtask | NULL      | index | idx_created_at,idx_track_source_id_created_at_len_parse_result_list | idx_track_source_id_created_at_len_parse_result_list | 14 | NULL | 134324154 | 50.0 | using where; Using index; Using temporary; Using filesort |
登錄后復制

是否回表判斷:

通過讀取 extra 列,可以判斷查詢是否回表:

  • using index 表示索引覆蓋,不需要回表。
  • using index condition 表示索引查找,不需要回表過濾。
  • using index & using where 表示索引查找,但需要回表過濾。
  • using where 表示回表查詢數據。
  • 主鍵查詢 不回表,但 extra 列無法反映。

對于給定的查詢,extra 列為 using where; using index; using temporary; using filesort,表明查詢使用了索引 (idx_track_source_id_created_at_len_parse_result_list),但需要回表過濾條件 created_at >= now() – interval 30 day。因此,該查詢會發生回表操作。

相關閱讀

主站蜘蛛池模板: 91精品国产综合久久福利软件 | 日韩一区二区三区在线播放 | 91视频正在播放 | 欧美videosex性极品hd | 国产伦精品一区二区三毛 | 亚洲天天干 | 人人爽人人爽 | 欧美日韩视频在线播放 | 亚洲精品电影网在线观看 | 91看片| 在线观看中文字幕视频 | 欧美日韩精品一区二区 | 中文字幕日韩欧美 | 精品美女久久久 | 亚洲国产成人在线观看 | 欧美性一级 | 粉嫩一区二区三区四区公司1 | 精品国产91乱码一区二区三区 | 国产日韩欧美在线观看 | 日韩在线综合 | 亚洲欧美一区二区三区国产精品 | 在线精品一区 | 视频在线亚洲 | 国产成人小视频 | 精品欧美乱码久久久久久 | 久久久久一区二区三区四区 | 国产日韩欧美一区二区 | 蜜桃在线播放 | 中文字幕一区二区三区精彩视频 | 91久久精品日日躁夜夜躁国产 | 亚洲综合一区二区三区 | 欧美一区二区网站 | 亚洲精品黄色 | 国产精品成人久久久久a级 久久蜜桃av一区二区天堂 | 中文字幕在线视频免费观看 | 国产91久久久久蜜臀青青天草二 | 91在线视频观看 | 国产98色在线 | 日韩 | 午夜精品久久久久久 | 久久精品视频在线免费观看 | 精品在线观看一区二区 |