私は次のようなデータの表を持っています:
t1
____________________________________________________
resources | companyName | Response | Score
David, Matt | companyA | YES | 5
Matt | compqanyB | NO | 8
Kyle, Kyle, David | companyC | YES | 2
ご覧のとおり、resources
はカンマ区切りの文字列です。また、のすべてのメンバーresources
が一意である必要はありません(行3を参照)。
私は、GROUP BY
各DISTINCT
メンバーが任意のリストで利用できるようにしたいです。他のすべての列が集約されます。
意図した結果:
query
______________________________________________________________________________
resources | companyName | Response | Score
David | *agregated result* | *agregated result* | *agregated result*
Matt | *agregated result* | *agregated result* | *agregated result*
Kyle | *agregated result* | *agregated result* | *agregated result*
編集:
別の可能性:
query
____________________________________________________
resources | companyName | Response | Score
David | companyA | YES | 5
Matt | companyA | YES | 5
Matt | compqanyB | NO | 8
Kyle | companyC | YES | 2
David | companyC | YES | 2