Hi,
Is there a way to perform an update on a table variable using a join to a actual table?
This is the update i'm trying to run:
update @tempset @temp.desc = table1.descfrom @temp, table1where @temp.id = table1.idI've tried using an alias for the table variable instead of the variable name, but I can't seem to get that to work either.
Any ideas?