sql >> データベース >  >> RDS >> Sqlserver

複数の列にまたがる重複を見つけるにはどうすればよいですか?

    重複したid ペアの場合name およびcity

    select s.id, t.* 
    from [stuff] s
    join (
        select name, city, count(*) as qty
        from [stuff]
        group by name, city
        having count(*) > 1
    ) t on s.name = t.name and s.city = t.city
    


    1. タイムスタンプに対する開始時刻と終了時刻の間のPostgreSQLマッチング間隔

    2. SQLiteで

    3. MySQL JOIN ON vs USING?

    4. PostgreSQLでの高可用性の管理–パートIII:Patroni