any idea why this:
update individual
set referenceid = 11
where individualid in (select refid from ref_temp2)
would generate the following error:
Subquery returned more than 1 value. This is not permitted when the subquery follows =, !=, <= , >, >= or when the subquery is used as an expression.
The statement has been terminated.
thx
update individual
set referenceid = 11
where individualid in (select refid from ref_temp2)
would generate the following error:
Subquery returned more than 1 value. This is not permitted when the subquery follows =, !=, <= , >, >= or when the subquery is used as an expression.
The statement has been terminated.
thx