this is incompatible with DISTINCT

Caused by: Java.sql.SQLException: Expression #1 of ORDER BY clause is not in SELECT list, references column ‘game.giftbag0_.create_date’ which is not in SELECT list; this is incompatible with DISTINCT

服务器Mysql和本地Mysql版本不一样,本地5.7.12 。解决办法可以考虑修改mysql配置文件,找到对应的my.cnf或者my.ini。没有的话就新建一个内容复制my-default.ini中的后面添加如下:

[sql] view plain copy

  1. <code class="language-java">sql_mode=NO_ENGINE_SUBSTITUTION,STRICT_TRANS_TABLES</code>  

猜你喜欢

转载自blog.csdn.net/plpldog/article/details/82794413