Laravel 5.3: Syntax error or access violation: 1463 Non-grouping field #39;distance#39; is used in HAVING clause(Laravel 5.3:语法错误或访问冲突:1463 HAVING 子句中使用了非分组字段“距离)
问题描述
将整个源代码移至 5.3 版本后出现此错误,我现在挠头两个多小时了.
This error came up after moving the whole source to the 5.3 version, and I'm scratching my head for over two hours now.
所以我有这种雄辩的查询:
So I have this kind of eloquent query:
POI::select('*', DB::raw("SQRT( POW((x - {$this->x}),2) + POW((y - {$this->y}),2) ) AS distance"))
->where('status', Config::get('app.poi_state.enabled'))
->whereNotIn('id', $excludePOIList)
->having('distance', '<=', $distance)
->orderBy('distance')->get();
它在升级之前找到了现在它抛出:
It worked find before upgrade now it throws:
语法错误或访问冲突:1463 非分组字段距离"用于 HAVING 子句 (SQL: select *, SQRT( POW((x - 860.0000),2) + POW((y - 105.0000),2) ) AS distance from poi where status = 1 and id not in (1) have distance <= 6 order by distance asc)
Syntax error or access violation: 1463 Non-grouping field 'distance' is used in HAVING clause (SQL: select *, SQRT( POW((x - 860.0000),2) + POW((y - 105.0000),2) ) AS distance from
poiwherestatus= 1 andidnot in (1) havingdistance<= 6 order bydistanceasc)
我想检查我的服务器上是否启用了 ONLY_FULL_GROUP_BY 模式,但它不是...
I wanted to check if the ONLY_FULL_GROUP_BY mode is enabled on my server, but it isn't...
选择@@sql_modeNO_ENGINE_SUBSTITUTION
SELECT @@sql_mode NO_ENGINE_SUBSTITUTION
同样的查询在 MySQL 工作台中运行良好.怎么回事?
The same query works fine in MySQL workbench. What's going on?
推荐答案
查看mysql连接中的config/database.php文件,strict为false:
Check in the config/database.php file in the mysql conection that the strict is false:
'strict' => false,
如果为真,则为假.
这篇关于Laravel 5.3:语法错误或访问冲突:1463 HAVING 子句中使用了非分组字段“距离"的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Laravel 5.3:语法错误或访问冲突:1463 HAVING 子句中使用了非分组字段“距离"
基础教程推荐
- MySQL 中的类型:BigInt(20) 与 Int(20) 2021-01-01
- 如何在 SQL 中将 Float 转换为 Varchar 2021-01-01
- 在多列上分布任意行 2021-01-01
- 二进制文件到 SQL 数据库 Apache Camel 2021-01-01
- 表 './mysql/proc' 被标记为崩溃,应该修复 2022-01-01
- 什么是 orradiag_<user>文件夹? 2022-01-01
- mysql选择动态行值作为列名,另一列作为值 2021-01-01
- oracle区分大小写的原因? 2021-01-01
- 在 MySQL 中:如何将表名作为存储过程和/或函数参数传递? 2021-01-01
- 如何根据该 XML 中的值更新 SQL 中的 XML 2021-01-01
