可能性の重複:
Delete duplicate records from a SQL table without a primary key重複
私が持っているデータ:私は)dublicateレコードによって出力(次の(順序を取得する必要があります
SELECT
a
, b
FROM
(
select a = 1, b = 30
union all
select a = 2, b = 50
union all
select a = 3, b = 50
union all
select a = 4, b = 50
union all
select a = 5, b = 60
) t
結果セットから除外する必要があります):
Oracleでa b
----------- -----------
1 30
2 50
3 50 -- should be excluded
4 50 -- should be excluded
5 60
そこで質問がB'によって B グループ...から、(a)の分を選択し、 'よりも複雑ですか? - それはあなたのサンプルデータ – antlersoft
@antlersoftと一緒に使えるので十分です。私は持っています:aはintであり、bはuniqueidentifierですので、それも動作します。ありがとうございました。 – garik