UPDATE statement in Oracle using SQL or PL/SQL to update first duplicate row ONLY - Stack Overflow most recent 30 from stackoverflow.com2009-12-10T22:21:55Zhttp://stackoverflow.com/feeds/question/244671http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/244671/update-statement-in-oracle-using-sql-or-pl-sql-to-update-first-duplicate-row-only6UPDATE statement in Oracle using SQL or PL/SQL to update first duplicate row ONLYVal2008-10-28T20:12:14Z2009-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#24475711Answer by Brian Schmitt for UPDATE statement in Oracle using SQL or PL/SQL to update first duplicate row ONLYBrian Schmitt2008-10-28T20:33:09Z2008-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#2448091Answer by JosephStyons for UPDATE statement in Oracle using SQL or PL/SQL to update first duplicate row ONLYJosephStyons2008-10-28T20:45:50Z2008-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(*) > 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#2448571Answer by Aaron Smith for UPDATE statement in Oracle using SQL or PL/SQL to update first duplicate row ONLYAaron Smith2008-10-28T21:01:09Z2008-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#2459690Answer by IronGoofy for UPDATE statement in Oracle using SQL or PL/SQL to update first duplicate row ONLYIronGoofy2008-10-29T06:36:08Z2008-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 (<select from above>)
</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-1Answer by Val for UPDATE statement in Oracle using SQL or PL/SQL to update first duplicate row ONLYVal2008-10-30T17:19:47Z2008-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#2770411Answer by Naveed for UPDATE statement in Oracle using SQL or PL/SQL to update first duplicate row ONLYNaveed2008-11-10T04:10:43Z2008-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#10505950Answer by Booby for UPDATE statement in Oracle using SQL or PL/SQL to update first duplicate row ONLYBooby2009-06-26T18:42:48Z2009-06-26T18:42:48Z<p>JosephStyons,
Tons of Thanks to You.Your solution worked for me after 3hrs battle..</p>