ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
记录下mysql的一次语句运行错误操作, Expression #2 of SELECT list is not in GROUP BY clause and contains nonaggregated column 'XXX' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by 解决方法:在mysql的my.ini配置文件中[mysqld]后面增加 一行 ``` sql\_mode=NO\_ENGINE\_SUBSTITUTION,STRICT\_TRANS\_TABLES ```