假设我有一个这样的表:
A B C
10 aname avalue
11 aname bvalue
11 aname bvalue
10 bname avalue
11 cname bvalue
我想选择这个集合中的所有组合,例如:
10 aname avalue
11 aname bvalue
10 bname avalue
11 cname bvalue
所以基本上是
SELECT DISTINCT of ( A & B & C )
。这是可能的,还是最好制作一个PHP脚本来获取值并按照我的喜好排列/分组?
最佳答案
select a, b, c from t group by a, b, c
关于mysql - 从多个字段的合并中选择所有不同的值,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/14933618/