gpt4 book ai didi

php - 这与 sql_mode=only_full_group_by 不兼容

转载 作者:行者123 更新时间:2023-12-05 03:09:10 35 4
gpt4 key购买 nike

我的 SQL 查询不工作显示此错误:

this is incompatible with sql_mode=only_full_group_by

我在其他 mysql pannel 中运行此查询,那里工作正常。在新服务器中无法正常工作....

如果我运行这个然后错误不起作用并且 group by 也不起作用

mysql > SET GLOBAL sql_mode=(SELECT REPLACE(@@sql_mode,'ONLY_FULL_GROUP_BY',''));

新服务器版本

客户端 API 库版本:mysqlnd 5.0.12-dev - 20150407 - $Id:b5c5906d452ec590732a93b051f3827e02749b83 $PHP 版本 7.0.15-0ubuntu0.16.04.4

最佳答案

如果没有看到您的查询就无法确定,但我假设您在 selectgroup by 子句中使用了不同的列集。

select  a, b, sum(c)
from table
group by a

如果是这种情况,您可以根据自己的实际需要编写类似这些的查询

select  a, b, sum(c)
from table
group by a, b

select  a, sum(c)
from table
group by a

请注意,这就是 group by 必须在几乎所有数据库中使用的方式。 MySQL 允许不同的集合是异常的。

关于php - 这与 sql_mode=only_full_group_by 不兼容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43582649/

35 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com