SQL : Delete duplicate record based on the wild string

kkran 831 Reputation points
2023-04-18T03:50:47.2166667+00:00

Hi All - Below is my sample output from the query : The Key column is concat of 1_ or 4_ with 'Number' column. My question is if there is same value in the column 'Number' and the key column column starts with both 1 and 4 then i have to select those rows starting with '1_ 'and insert into a another history table.

For example : IDs from 1 to 10, Each row has same 'number' value and these start with either 1 and 4 then i have to move rows 1,3,5,7,9 into the history table starting with only '1_'.

To keep it simple : If the same number value in key column starting with 1 and 4 then only move the 1_ values to history table. Could you please help.
User's image

\

SQL Server
SQL Server
A family of Microsoft relational database management and analysis systems for e-commerce, line-of-business, and data warehousing solutions.
14,493 questions
{count} votes

1 answer

Sort by: Most helpful
  1. LiHongMSFT-4306 31,551 Reputation points
    2023-04-18T05:43:35.69+00:00

    Hi @kkran Try this query:

    INSERT INTO History_Table
    SELECT A.* 
    FROM Sample_table A JOIN Sample_table B ON A.NUMBER=B.NUMBER AND A.[KEY]<>B.[KEY]
    WHERE LEFT(A.[KEY],2)='1_'
    

    Best regards,

    Cosmog Hong

    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.