MySQL - SQL_BIG_SELECTS

前端 未结 6 1359
渐次进展
渐次进展 2020-11-27 17:50

Hey, I\'ve been investigating SQL_BIG_SELECTS, but the MySQL documentation so far has been pretty unhelpful. I\'m looking for some insight as to preventing errors like the o

6条回答
  •  青春惊慌失措
    2020-11-27 18:30

    Following command works for me

    SET GLOBAL max_join_size=18446744073709551615;
    

    But what do i need to put in my.cnf file instead of the command? Btw, i'm using "5.6.12 MySQL Community Server"

提交回复
热议问题