I have an update SQL such like ‘UPDATE T SET d=d*2’, then query the updated value such like ‘SELECT d FROM T’. Is it possible to use one SQL call to implement this in JDBC? Thanks!
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
|
No, mixing DML with SELECT queries is already not possible in plain SQL, so JDBC can't do any much for you. You need to fire at least two queries, if necessary in a single transaction. An alternative is a stored procedure which you can then exeucte by a single |
|||
|
|
|
You can use Oracle's RETURNING INTO Clause to get the result into a variable in pl/sql. Something like this inside pl/sql, but achieving the same result using simple SQL might not be possible. By the way, what database are you using?
|
|||
|