Answers for "how to delete data from sql server with exactly the same date time that are duplicates"

SQL
5

sql server delete records that have a single duplicate column

WITH cte AS (
    SELECT 
        contact_id, 
        first_name, 
        last_name, 
        email, 
        ROW_NUMBER() OVER (
            PARTITION BY 
                first_name, 
                last_name, 
                email
            ORDER BY 
                first_name, 
                last_name, 
                email
        ) row_num
     FROM 
        sales.contacts
)
DELETE FROM cte
WHERE row_num > 1;
Posted by: Guest on March-12-2020

Code answers related to "how to delete data from sql server with exactly the same date time that are duplicates"

Code answers related to "SQL"

Browse Popular Code Answers by Language