Answers for "after delete the Duplicate in CTE then select the record insql"

SQL
6

query delete duplicates

DELETE FROM dups a USING (
      SELECT MIN(ctid) as ctid, key
        FROM dups 
        GROUP BY key HAVING COUNT(*) > 1
      ) b
      WHERE a.key = b.key 
      AND a.ctid <> b.ctid
Posted by: Guest on February-20-2020

Code answers related to "after delete the Duplicate in CTE then select the record insql"

Code answers related to "SQL"

Browse Popular Code Answers by Language