Hello All,
I am trying to update multiple rows in a table with the following query:
update some_table
set (discount_rates)=
(select value
from some_table_a aa, some_table bb
where aa.key=bb.id);
I am getting the following error.
SQL Error: ORA-01427: single-row subquery returns more than one row
Thanks in advance.
I am trying to update multiple rows in a table with the following query:
update some_table
set (discount_rates)=
(select value
from some_table_a aa, some_table bb
where aa.key=bb.id);
I am getting the following error.
SQL Error: ORA-01427: single-row subquery returns more than one row
Thanks in advance.