Answers for "query to remove duplicate rows from a table?"

SQL
7

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
0

how to query without duplicate rows in sql

SELECT DISTINCT col1,col2... FROM table_name where Condition;
Posted by: Guest on October-02-2020
0

Query to remove duplicate rows from a table

DELETE FROM Customers WHERE ROWID(SELECT MAX (rowid) FROM Customers C WHERE CustomerNumber = C.CustomerNumber);
Posted by: Guest on November-19-2021

Code answers related to "query to remove duplicate rows from a table?"

Code answers related to "SQL"

Browse Popular Code Answers by Language