Attempt to re-open an already-closed object: java.lang.IllegalStateException:?

后端 未结 3 1074
野性不改
野性不改 2021-01-04 06:29

I know this question has asked many times in SO,but i couldn\'t figure out my exact problem.

I am using the following code to get the data from the database(Table1)

3条回答
  •  北海茫月
    2021-01-04 07:16

    You can achieve your goal with pure SQL it is faster and better from architecture point of View because all logic will be in one SQL transaction

    REPLACE INTO table_where_to_put  SELECT *, (totalmatchedscore/totalingredients) as average  FROM table_with_input_data
    

    Use REPLACE OR UPDATE

提交回复
热议问题