I am trying to do the following:
update mytable
set fullname = anothersource.firstname ||' '|| anothersource.lastname
where
userid = anothersource.userid
;
I am having errors which I am not pasting because it make not sense since I simplified the example, however, is there a special way of handling updates with information from different sources? I believe that may be where problem lives.
Thanks