如果我有一个groupBy
查询:
Table::select('a','b','c','d')->groupBy('a','b','c','d')->get();
如何提取每个组中的唯一值?
例如,如果返回的数据集为:
Row1 = a1, b1, c1, d1
Row2 = a1, b1, c1, d2
Row3 = a2, b2, c2, d3
Row4 = a2, null, c3, d4
然后我想提取唯一的列:
$col_a = [a1, a2]
$col_b = [b1, b2, null]
$col_c = [c1, c2, c3]
$col_d = [d1, d2, d3 ,d4]
1条答案
按热度按时间5f0d552i1#