How do you replace blank fields in one table with entries from another table. I have been using fields from table A and repacing with table B
Selct a.name, iif (a.location<> "",a.location,b.location) from
table a, table b
where b.location = (Select b.location from table b, table a where a.name = b.name)
I am not returing any rows
Thanks in advance!