同样的sql语句,使用navicat查询数据和在yii2.0用查询返回的结果不一样?
1.目的:想通过sql语句查询数据,并按到大到小排序,相同的数据有相同的排名值。这条语句在navicat中查询得到了想要的结果;但是通过php写sql语句,返回的结果却不对。可是,仅仅是将数据范围变大了,查询出来的数据对的???
2.运行结果截图:
使用navicat的查询结果:
使用在php代码中执行sql的结果:
3.代码如下
$sql = 'select * ,if (@pdept= temp.score, @cl_rank := @cl_rank, @cl_rank := @cl_rank + 1) as cl_rank,
@pdept:= temp.score from( select * from ( select * , @cl_rank :=0 from '.Helper::OVERALL_RESULT.$mstId.' ) innerTable
where subjplan_id = :subjp_id and class_id = :clId ORDER BY score DESC ) temp ORDER BY score DESC;';
$cl_scores = Yii::$app->getDb()->createCommand($sql, [':subjp_id' => $subjpId, ':clId' => $clId ])->queryAll();
$sql = 'select * ,if (@pdept= temp.score, @g_rank := @g_rank, @g_rank := @g_rank + 1) as g_rank,
@pdept:= temp.score from( select * from (select *, @g_rank :=0 from '.Helper::OVERALL_RESULT.$mstId.') innerTable
where subjplan_id = :subjp_id ORDER BY score DESC) temp ORDER BY score DESC;';
$g_scores = Yii::$app->getDb()->createCommand($sql, [':subjp_id' => $subjpId])->queryAll();
上面的sql语句执行结果不对,但是下面的结果就是正确的?实在不明白问题处在哪里,上下的sql语句其实差不多,就是查询的范围不一样?
同时,要是把sql语句放到navicat中就全部能得出正确的结果~~~~
请大家有空就帮忙解答一下,谢谢
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论