mysql force index() 強制索引的使用

來源:互聯網
上載者:User

標籤:欄位   int   查詢   strong   log   篩選   style   索引   條件   

mysql force index() 強制索引的使用

 

之前跑了一個SQL,由於其中一個表的資料量比較大,而在條件中有破壞索引或使用了很多其他索引,就會使得sql跑的非常慢。。。

那我們怎麼解決呢? 

這時候我麼可以使用mysql force index() 強制索引來最佳化查詢語句;

使用MySQL force index 強制索引的目的是對目標表添加最關鍵的索引,使其優先使用該索引篩選資料;

select * from ws_shop a where date(create_time-interval 6 hour) > ‘2016-10-01 06:00:00‘

如果表中的資料是百萬級的,這樣查詢是比較慢的;雖然你有可能在欄位create_time上面加了索引,但是在where條件中又破壞了索引;導致索引失效;

這是我們最佳化為:

select * from ws_shop a force index(create_time)where date(create_time-interval 6 hour) > ‘2016-10-01 06:00:00‘

 

mysql force index() 強制索引的使用

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.