UPDATE statement in Oracle using SQL or PL/SQL to update first duplicate row ONLY - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T22:21:55Z http://stackoverflow.com/feeds/question/244671 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/244671/update-statement-in-oracle-using-sql-or-pl-sql-to-update-first-duplicate-row-only 6 UPDATE statement in Oracle using SQL or PL/SQL to update first duplicate row ONLY Val 2008-10-28T20:12:14Z 2009-06-26T18:42:48Z <p>Hi,</p> <p>I'm looking for an UPDATE statement where it will update a single duplicate row only and remain the rest (duplicate rows) intact as is, using ROWID or something else or other elements to utilize in Oracle SQL or PL/SQL?</p> <p>Here is an example duptest table to work with:</p> <p>CREATE TABLE duptest (ID VARCHAR2(5), NONID VARCHAR2(5));</p> <ul> <li><p>run one INSERT INTO duptest VALUES('1','a'); </p></li> <li><p>run four (4) times INSERT INTO duptest VALUES('2','b'); </p></li> </ul> <p>Also, the first duplicate row has to be updated (not deleted), always, whereas the other three (3) have to be remained as is!</p> <p>Thanks a lot, Val.</p> http://stackoverflow.com/questions/244671/update-statement-in-oracle-using-sql-or-pl-sql-to-update-first-duplicate-row-only/244757#244757 11 Answer by Brian Schmitt for UPDATE statement in Oracle using SQL or PL/SQL to update first duplicate row ONLY Brian Schmitt 2008-10-28T20:33:09Z 2008-10-28T20:33:09Z <p>Will this work for you:</p> <pre><code>update duptest set nonid = 'c' WHERE ROWID IN (SELECT MIN (ROWID) FROM duptest GROUP BY id, nonid) </code></pre> http://stackoverflow.com/questions/244671/update-statement-in-oracle-using-sql-or-pl-sql-to-update-first-duplicate-row-only/244809#244809 1 Answer by JosephStyons for UPDATE statement in Oracle using SQL or PL/SQL to update first duplicate row ONLY JosephStyons 2008-10-28T20:45:50Z 2008-10-28T20:45:50Z <p>This worked for me, even for repeated runs.</p> <pre><code>--third, update the one row UPDATE DUPTEST DT SET DT.NONID = 'c' WHERE (DT.ID,DT.ROWID) IN( --second, find the row id of the first dup SELECT DT.ID ,MIN(DT.ROWID) AS FIRST_ROW_ID FROM DUPTEST DT WHERE ID IN( --first, find the dups SELECT ID FROM DUPTEST GROUP BY ID HAVING COUNT(*) &gt; 1 ) GROUP BY DT.ID ) </code></pre> http://stackoverflow.com/questions/244671/update-statement-in-oracle-using-sql-or-pl-sql-to-update-first-duplicate-row-only/244857#244857 1 Answer by Aaron Smith for UPDATE statement in Oracle using SQL or PL/SQL to update first duplicate row ONLY Aaron Smith 2008-10-28T21:01:09Z 2008-10-28T21:31:51Z <p>I think this should work.</p> <pre><code>UPDATE DUPTEST SET NONID = 'C' WHERE ROWID in ( Select ROWID from ( SELECT ROWID, Row_Number() over (Partition By ID, NONID order by ID) rn ) WHERE rn = 1 ) </code></pre> http://stackoverflow.com/questions/244671/update-statement-in-oracle-using-sql-or-pl-sql-to-update-first-duplicate-row-only/245969#245969 0 Answer by IronGoofy for UPDATE statement in Oracle using SQL or PL/SQL to update first duplicate row ONLY IronGoofy 2008-10-29T06:36:08Z 2008-10-29T06:36:08Z <p>I know that this does not answer your initial question, but there is no key on your table and the problem you have adressing a specific row results from that.</p> <p>So my suggestion - if the specific application allows for it - would be to add a key column to your table (e.g. REAL_ID as INTEGER).</p> <p>Then you could find out the lowest id for the duplicates</p> <pre><code>select min (real_id) from duptest group by (id, nonid) </code></pre> <p>and update just these rows:</p> <pre><code>update duptest set nonid = 'C' where real_id in (&lt;select from above&gt;) </code></pre> <p>I'm sure the update statement can be tuned somewhat, but I hope it illustrates the idea.</p> <p>The advantage is a "cleaner" design (your id column is not really an id), and a more portable solution than relying on the DB-specific versions of rowid.</p> http://stackoverflow.com/questions/244671/update-statement-in-oracle-using-sql-or-pl-sql-to-update-first-duplicate-row-only/251013#251013 -1 Answer by Val for UPDATE statement in Oracle using SQL or PL/SQL to update first duplicate row ONLY Val 2008-10-30T17:19:47Z 2008-10-30T17:41:15Z <p>Kogus, </p> <p>You are the boss!!!</p> <p>I’ve tried so many options, variations, here and there and your’s was the key, the bull's eye!</p> <p>Thank you very much!!!</p> <p>Philadelphia PHILLIES - 2008 WORLD CHAMPIANS!!!</p> http://stackoverflow.com/questions/244671/update-statement-in-oracle-using-sql-or-pl-sql-to-update-first-duplicate-row-only/277041#277041 1 Answer by Naveed for UPDATE statement in Oracle using SQL or PL/SQL to update first duplicate row ONLY Naveed 2008-11-10T04:10:43Z 2008-11-10T04:10:43Z <p>UPDATE duptest SET nonid = 'c' WHERE nonid = 'b' AND rowid = (SELECT min(rowid) FROM duptest WHERE nonid = 'b');</p> http://stackoverflow.com/questions/244671/update-statement-in-oracle-using-sql-or-pl-sql-to-update-first-duplicate-row-only/1050595#1050595 0 Answer by Booby for UPDATE statement in Oracle using SQL or PL/SQL to update first duplicate row ONLY Booby 2009-06-26T18:42:48Z 2009-06-26T18:42:48Z <p>JosephStyons, Tons of Thanks to You.Your solution worked for me after 3hrs battle..</p>