My Spring Boot/Java 8 app updates rows in an Oracle 11g database. Is there an efficient way to return the rows that were updated (note, NOT the count, but the data from each row updated)?
Obviously, I could update a column in each row with an id then do a select for that ID, but I am wondering if there is a better way.
I'm currently using Spring's jdbctemplate, but I'm not wedded to it.