程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> MYSQL數據庫 >> MySQL綜合教程 >> 【MySQL幫助】幫朋友優化SQL的過程--)從4S到0.011秒

【MySQL幫助】幫朋友優化SQL的過程--)從4S到0.011秒

編輯:MySQL綜合教程

這個sql運行很慢,4秒鐘

SELECT 
(op.cash_payment+op.pos_payment+op.online_payment+op.charge_card_payment) AS real_payment,op.* 
FROM db_order.`order_payment` AS op WHERE op.order_payment_id in 
(SELECT oi.order_payment_id FROM db_order.`order_info` AS oi WHERE oi.batch_order_id = '123456') 
ORDER BY op.insert_time DESC

我讓朋友把explain結果帖下,如下圖所示: \
我看到where後面還有in,估計是這個in引起的,不過也許有數據量的問題,所以就再次確認下表的數據量,得到信息 order_info 44588
order_payment 74601
數據量很小,所以估計很大可能是in的問題。 所以把sql改成如下:
SELECT 
  (op.cash_payment+op.pos_payment+op.online_payment+op.charge_card_payment) AS real_payment,op.* 
  FROM db_order.`order_payment` AS op,db_order.`order_info` oi WHERE op.order_payment_id=oi.order_payment_id and oi.batch_order_id = '123456'
  ORDER BY op.insert_time DESC


發給朋友,朋友說相當快,在0.011S。

 

看來 這個IN確實需要謹慎使用,特別是在兩表關聯的時候,應該把in替換成內鏈接

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved