mysql in 子查询优化_mysql in 子查询 容易优化
生活随笔
收集整理的這篇文章主要介紹了
mysql in 子查询优化_mysql in 子查询 容易优化
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
mysql in 子查詢 簡單優化 大數量下,不要使用 in 嵌套子查詢,性能很差,很容易卡死。 ? 簡單調整方式如下: select uid,nick_name from uc_users where uid in(select fid from uc_follow where uid=#uid#) ? 可拆解成: 1、select fid from uc_follow wher
mysql in 子查詢 簡單優化
大數量下,不要使用 in 嵌套子查詢,性能很差,很容易卡死。
?
簡單調整方式如下:
select uid,nick_name from uc_users where uid in(select fid from uc_follow where uid=#uid#)
?
可拆解成:
1、select fid from uc_follow where uid=#uid#
將1查出的結果,傳給2
2、select uid,nick_name from uc_users where uid in($fids$)
?
本文原創發布php中文網,轉載請注明出處,感謝您的尊重!
總結
以上是生活随笔為你收集整理的mysql in 子查询优化_mysql in 子查询 容易优化的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 两点间最短路 java_AcWing 8
- 下一篇: Mybatis-jar-lib