Hi - I have been trying to update a column based on existing column using ORDER BY ID and UPDATE
but when I execute below code, I receive error as "ORA-01732: data manipulation operation not legal on this view"
UPDATE (SELECT * FROM SL_RESULTS Order by ID)  
SET START_DATE_NEW = add_months( start_date, 3 * mod( rownum, 4 ));
Is there a way I can Order the table by ID first and then update the column ?