How can I get around this subquery error returned from the below sql? For each NUM
update tab1
set text = (select tab2.text
from tab2, tab1
where tab1.num = tab2.num)
Tab2 contains data like:
num text
123 abc
345 def
345 def
678 ghi
678 ghi
Thanks in advance.