レビューしていただきありがとうございます。私はどうしても助けが必要で、以下の質問を明確にすることさえできません...
SQL 2008 を使用して、5 つの列を持つテーブルをセットアップしました。
データは実質的に次のようになります。
column1 column2 column3 column4 column5
T1 N1 A1 L1 S1
T1 N2 A2 L2 S4
T1 N2 A3 L2 S2
T1 N2 A1 L2 S4
T2 N6 A3 L3 S2
T2 N7 A3 L3 S4
T2 N7 A3 L4 S4
...
同じ値を持つレコードについて、 throughcolumn1
の一意の順列をそれぞれ識別したいと考えています。column2
column5
次のような質問に答えたいと思います。
ケース1
どこにいくつのレコードが存在するか
column1 is the same value and
column2 is the same value and
column3 is the same value and
column4 is the same value and
column5 is different
それから
ケース 2
column1 is the same value and
column2 is the same value and
column3 is the same value and
column4 is different and
column5 is the same value
それから
ケース 3
column1 is the same value and
column2 is the same value and
column3 is the same value and
column4 is different and
column5 is different
等々。ありがとう!