Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

how to copy rows to same table where select column1 value = 55 and to new row with column 1 value = 56, if we run query second time, it should not copy the old lines again

share|improve this question

1 Answer

You could add a where clause to prevent a duplicate insert using not exists:

insert  YourTable
        (col1, col2, col3, ...)
select  56 -- New value
,       col2
,       col3
,       ...
from    YourTable
where   col1 = 55 -- Old value
        and not exists
        (
        select  *
        from    YourTable
        where   col1 = 56 -- New value
        )
share|improve this answer
wo thanks a lot Sir! – Agent Mahone Oct 2 '12 at 18:06
Sir Andomar we have to select existing one 55 (old value) and add that row value with new value 56 As you have written insert YourTable (col1, col2, col3, ...) select 56 -- New value .. will not that search for 56 value to copy instead of copying 55 ? – Agent Mahone Oct 2 '12 at 18:12
Please don't Sir me. This answer will search for the row with value 55 and create a copy, replacing 55 with 56 in col1. – Andomar Oct 2 '12 at 18:13
okay Andomar i wont Sir you .. :) .. its not working .. actually i have to select 2 column values in where clause and have to check for just 56 in do not exist which is okay .. error is just before not exists "where col1 = 55 and col2 = x and not exists (.....) – Agent Mahone Oct 2 '12 at 18:39
What error? Perhaps you can create an example on sqlfiddle.com or data.stackexchange.com – Andomar Oct 2 '12 at 18:44
show 3 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.