A:중복된 줄을 어떻게 삭제합니까?대답: 중복된 줄을 어떻게 삭제합니까?
대답: 중복된 줄을 어떻게 삭제합니까?
2010년 9월 29일
771
또 다른 가능한 방법은;
--Ensure that any immediately preceding statement is terminated with a semicolon above
WITH cte
AS (SELECT ROW_NUMBER() OVER (PARTITION BY Col1, Col2, Col3
ORDER BY ( SELECT 0)) RN
FROM #MyTable)
DELETE FROM cte
WHERE RN > 1;
사용 중ORDER
...
</p>
Open Full Answer
똑똑한 대답2
Reference
이 문제에 관하여(A:중복된 줄을 어떻게 삭제합니까?대답: 중복된 줄을 어떻게 삭제합니까?), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://dev.to/boyukbas/answer-how-can-i-remove-duplicate-rows-34om
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
;
--Ensure that any immediately preceding statement is terminated with a semicolon above
WITH cte
AS (SELECT ROW_NUMBER() OVER (PARTITION BY Col1, Col2, Col3
ORDER BY ( SELECT 0)) RN
FROM #MyTable)
DELETE FROM cte
WHERE RN > 1;
</p>
Reference
이 문제에 관하여(A:중복된 줄을 어떻게 삭제합니까?대답: 중복된 줄을 어떻게 삭제합니까?), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/boyukbas/answer-how-can-i-remove-duplicate-rows-34om텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)