I think this should work.
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
)
|
2 | Set to update the first row, not all others. | ||
|
I think this should work.
|
||||
|
1 |
|
||
|
I think this should work.
|
||||