반응형
SELECT *
FROM [table_name]
WHERE [field] IN (
SELECT [field]
FROM [table_name]
GROUP BY [field]
HAVING COUNT(*) > 1
)
반응형
'개발 이야기 > Database' 카테고리의 다른 글
[Mybatis] parameter NULL check (0) | 2020.01.28 |
---|---|
[Postgresql] CRYPT 암호화 (0) | 2020.01.23 |
[Postgresql] Primary Key 중복 오류해결 - 시퀀스 시작점 변경 (0) | 2019.12.09 |
[Postgresql] could not access file "$libdir/tablefunc": No such file or directory (function 생성 시 오류) (0) | 2019.12.09 |
[Postgresql] 컬럼을 중심으로 중복되는 행 삭제 (0) | 2019.12.09 |