I did not notice that he had the adp file in the subselect.  but to expand
on what you said.
Update adp/locnmstrpf a
Set a.printer =
    (select b.printer from tomh/locnmstrpf b
     Where a.locn = b.locn and b.printer <> ' '
     )
WHERE a.printer = ' '
--
Michael Schutte
Admin Professional
Bob Evans Holiday Farmhouse Feast, Serves 6-8 l $74.99
A complete homestyle meal TO GO, ready to heat at home, serve & enjoy!
Perfect for Thanksgiving, Christmas or holiday entertaining.
For more information, visit www.FarmhouseFeast.com
                                                                       
             "Dennis Lovelady"                                         
             <iseries@lovelady                                         
             .com>                                                      To
             Sent by:                  "'Midrange Systems Technical    
             midrange-l-bounce         Discussion'"                    
             s@xxxxxxxxxxxx            <midrange-l@xxxxxxxxxxxx>       
                                                                        cc
                                                                       
             12/09/2009 01:14                                      Subject
             PM                        RE: Help with a fairly basic SQL (I
                                       think)                          
                                                                       
             Please respond to                                         
             Midrange Systems                                          
                 Technical                                             
                Discussion                                             
             <midrange-l@midra                                         
                 nge.com>                                              
                                                                       
                                                                       
update adp/locnmstrpf set printer=(select max(a.printer) from
tomh/locnmstrpf a, adp/locnmstrpf b where a.locn=b.locn and
a.printer<>' ' and b.printer=' ')
might do it for you.
Are you sure?  I don't think that will do what you want.  I'd try something
more along these lines:
Update adp/locnmstrpf a
Set printer =
    (select max(b.printer) from tomh/locnmstrpf b
     Where a.locn = b.locn
     )
If locn is uniquely-keyed, you can drop the MAX(  ) part of the equation.
Dennis Lovelady
http://www.linkedin.com/in/dennislovelady
--
Programming: An act similar to banging one's head against a wall, but with
fewer opportunities for reward.
--
This is the Midrange Systems Technical Discussion (MIDRANGE-L) mailing list
To post a message email: MIDRANGE-L@xxxxxxxxxxxx
To subscribe, unsubscribe, or change list options,
visit: 
http://lists.midrange.com/mailman/listinfo/midrange-l
or email: MIDRANGE-L-request@xxxxxxxxxxxx
Before posting, please take a moment to review the archives
at 
http://archive.midrange.com/midrange-l.
 
As an Amazon Associate we earn from qualifying purchases.