Skip to content
Advertisement

Using two updates where second update statement is using column from first update statement as input

I’ve small doubt about update code block which has been written by someone before and now I’ll be using it in my Java program.

Is it possible to update a column first, then commit and afterwards use same column as an input in another update statement inside same block, as listed in below code. I know using sub-query way to do this but have never seen this way before. It’ll great if someone can confirm

1) Whether it is correct?

2) If not, what can be updated to make it work beyond using sub-query format.

3) Also, bas_capital_calc_cd is column in same table derivatives which is being updated. Can we pass column as an input to functions, such as bas2_rwa_calc here? Moreover, can we pass column name at all in plsql function as input.

Thanks in advance for help!

Advertisement

Answer

In DB2 and the SQL standard you use a feature called FINAL_TABLE to do this. In Oracle you use a statement called “RETURNING”.

cf – https://blog.jooq.org/tag/final-table/

User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement