对 while 循环中特定 ID 的结果进行分组
Table with data:
id score inputid
1 1 1
2 4 1
3 3 1
4 1 2
5 2 2
6 3 5
7 1 6
8 1 6
while ($stmt_score->fetch())
{
if($bind_inputid == '1') $array['score'][0] += $bind_score;
if($bind_inputid == '2') $array['score'][1] += $bind_score;
if($bind_inputid == '5') $array['score'][2] += $bind_score;
if($bind_inputid == '6') $array['score'][3] += $bind_score;
}
如上所述,我想将具有特定 ID 的所有结果相加。但由于会有更多的 $bind_inputid ID,我的问题是,如何为 Id 的更多结果自动生成语句?
它必须在 while 循环中完成,而不是使用 mysql select 完成。 PHP 郎. 谢谢。
Table with data:
id score inputid
1 1 1
2 4 1
3 3 1
4 1 2
5 2 2
6 3 5
7 1 6
8 1 6
while ($stmt_score->fetch())
{
if($bind_inputid == '1') $array['score'][0] += $bind_score;
if($bind_inputid == '2') $array['score'][1] += $bind_score;
if($bind_inputid == '5') $array['score'][2] += $bind_score;
if($bind_inputid == '6') $array['score'][3] += $bind_score;
}
As stated above I want to sum all results with specific ID. But since there will be more $bind_inputid ID's, my question is, how to make automatic statements for more results of an Id's ?
It has to be done in while loop not with mysql select.
PHP Lang.
Thx.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
假设您的结果按
inputid
排序:Assume your result is sorted by
inputid
: