I want to update a temp table based on another table result set.
Any suggestions. The select query works independently. But I am thinking to integrate with the update statement.
UPDATE #person_membership_promo_ext
SET note_about=
(
select note_text
FROM note nt
INNER JOIN #person_membership_promo_ext per
ON per.person_id=nt.main_ref_id
and per.membership_type='P'
and note_id=(select MAX(note_id)from note nt_1
where nt_1.main_ref_id=per.person_id)
)
You can use joins in update statements
Here you go,
I hope this will help!