分组列出结果
我在 php 中对 mysql 结果进行“排序”时遇到问题。
这是我拥有的数据库
id¦ value ¦ category --------------------------- 1 ¦ Value1 ¦ category1 2 ¦ Value2 ¦ category2 3 ¦ Value3 ¦ category2 4 ¦ Value4 ¦ category3 5 ¦ Value5 ¦ category1 6 ¦ Value6 ¦ category1
我想做的是在php中获得如下所示的结果:
Value1
- Value5
- Value6category2
- Value2
Value3category3
- Value4
- category1
- 。
任何
帮助都是有用的 谢谢
I'm having trouble 'sorting' my mysql results in php.
Here's the database I have
id¦ value ¦ category --------------------------- 1 ¦ Value1 ¦ category1 2 ¦ Value2 ¦ category2 3 ¦ Value3 ¦ category2 4 ¦ Value4 ¦ category3 5 ¦ Value5 ¦ category1 6 ¦ Value6 ¦ category1
What I'm trying to do, is to get a result in php looking like this:
category1
- Value1
- Value5
- Value6
category2
- Value2
- Value3
category3
- Value4
Any help is useful. Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
然后在PHP中
Then in PHP
SQL:
PHP:
SQL:
PHP:
循环遍历结果集,在初始数组中为遇到的每个新类别创建数组键,并将值数据推送到其中。
如果类别的键存在,则跳过键创建阶段并仅添加数据。
然后,您可以循环生成的数组并输出每个类别(键)的所有数据(值数组)。
Loop through the result-set, create array key within your initial array for each new category you encounter and push value data into it.
If key for category exists, skip the key creation stage and just add the data.
Then you can loop through generated array and output all the data (array of values) per category (key).
使用 GROUP_CONCAT 你会获取输出将以
,
分隔的字符串形式您还可以使用 GROUP_CONCAT() 的某种格式。像
上面的查询将使用
-
而不是,
更改顺序和缩写
,然后通过脚本语言重新排列,如果使用 php,则尝试使用
explode()
注意:
GROUP_CONCAT ()
忽略 NULL价值观。use GROUP_CONCAT and you will get the output will be in string separated by
,
You can also use some format of GROUP_CONCAT(). Like
above query will use
-
instead of,
To change the order and shorting
and then re arrange by ur scripting language, if using php then try with
explode()
Note:
GROUP_CONCAT()
ignores NULL values.感谢大家的帮助。我将混合使用 AlienWebguy 和 jchavannes 的代码,该代码工作完美,正是我正在寻找的。
代码如下所示:
SQL:
PHP:
thanks everyone for the help. I'm going to use a mix of AlienWebguy's and jchavannes's code which is working perfect, just what i was searching for.
the code looks like this:
SQL:
PHP:
这是一种仅用一个循环即可完成的解决方案。
Here is a solution done with just one loop.