I have the following example used in MSSQL and was wanting to convert it to Oracle. The @@ROWCOUNT is not valid in Oracle and was wondering if there is an approach to do the same thing.
UPDATE Table1 SET (...) WHERE Column1='SomeValue'
IF @@ROWCOUNT=0
INSERT INTO Table1 VALUES (...)
The PL/SQL equivalent is: