作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的 Laravel 中有 3 个联合查询,该查询在 SQL 中有效,但在 Laravel 中无效。并显示此错误:
SQLSTATE[42000]: Syntax error or access violation: 1064 You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near 'union all
代码如下。
$android = DB::connection("mysql2")->table('android')
->join('game_players', 'game_players.id', '=', 'android.playerId')
->select("android.playerId", "android.dateAdded", "android.identifier")
...
->where("android.dateAdded", "<>", '');
$ios = DB::connection("mysql2")->table('ios')
->join('game_players', 'game_players.id', '=', 'ios.playerId')
->select("ios.playerId", "ios.dateAdded", "ios.identifier")
...
->unionAll($android);
$steam = DB::connection("mysql2")->table(steam')
->join('game_players', 'game_players.id', '=', 'steam.playerId')
->select("playerId", "dateAdded", "identifier")
...
->unionAll($ios)
->get();
我真的不知道是什么导致了这个错误,但可能是因为我调用了 3 次 union?对这个有什么想法吗?
如果它只有两个,联合就可以工作,但是当我添加第三个时,它得到了错误
最佳答案
我的错误..这是答案:
$android = DB::connection("mysql2")->table('android')
->join('game_players', 'game_players.id', '=', 'android.playerId')
->select("android.playerId", "android.dateAdded", "android.identifier")
...
->where("android.dateAdded", "<>", '');
$ios = DB::connection("mysql2")->table('ios')
->join('game_players', 'game_players.id', '=', 'ios.playerId')
->select("ios.playerId", "ios.dateAdded", "ios.identifier")
...
$steam = DB::connection("mysql2")->table(steam')
->join('game_players', 'game_players.id', '=', 'steam.playerId')
->select("playerId", "dateAdded", "identifier")
...
->union($ios)
->union($android);
->get();
关于mysql - laravel 如何在 DB Query 中管理多个联合,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55580443/
我是一名优秀的程序员,十分优秀!