我想从数据库表中选择行并使用 PHP 而不是基于参数的 SQL 对它们进行分组(在本例中是按项目)。
SQL:
Clothes table
id item owner
1 shoes joe
2 pants joe
3 hat joe
4 pants joe
5 hat tom
SELECT * from Clothes where owner='joe'
1 shoes joe
2 pants joe
3 hat joe
4 pants joe
以下是我希望使用 PHP 而不是 SQL 来处理结果的方式GROUP BY item
PHP:
1 shoes joe
2 pants joe //count 2
3 hat joe
我确定有一个 PHP 数组函数,我只是不熟悉,想法?