In ms-access:
I have 2 tables. Both contain "title" field.
I would like to add to table 1, one field from table 2,when the title is the same.
For exmple:
table 1:
title: title1
name: smith
address: add1
table 2:
title:title 1
id: id1
Wanted result in table 1:
title: title1
name: smith
address: add1
id: id1
How can I update table 1?
I prefer to keep table 1 as it is, ad only update then create a query
that will create a new table.
Btw - When I did try to use left outer join for that, I had more records
than I had in table 1, and table 1 was first in the left outer join query.
How is that?
I would like to keep table 1 and only update it, thus stay with the same number of records.
Is it possible to do in a query, or do I need vba, or maybe to use asp page?
Pls help.
Thanks
I have 2 tables. Both contain "title" field.
I would like to add to table 1, one field from table 2,when the title is the same.
For exmple:
table 1:
title: title1
name: smith
address: add1
table 2:
title:title 1
id: id1
Wanted result in table 1:
title: title1
name: smith
address: add1
id: id1
How can I update table 1?
I prefer to keep table 1 as it is, ad only update then create a query
that will create a new table.
Btw - When I did try to use left outer join for that, I had more records
than I had in table 1, and table 1 was first in the left outer join query.
How is that?
I would like to keep table 1 and only update it, thus stay with the same number of records.
Is it possible to do in a query, or do I need vba, or maybe to use asp page?
Pls help.
Thanks