S
Simple
I have two large tables (Table 1, Table2) that hold information about
Scientific Publications - author, year published, and title. With a query, I
would like to find out which articles are in Table 1, but that are not in
Table 2.
I need only the author and publication date information to identify a single
article. The publicaiton date field shouldn't be a problem, since the dates
will always be formatted identically (e.g. 1959). But there is one problem:
In Table 2, the authors are listed in the following format:
Smith, B.A
....while in Table 1, the authors are listed only by their last name (e.g.
Smith). Is there any way to compare these two tables, and find the missing
articles from Table 2, but while querying for information from these
non-identically-formatted "Author" fields?
To clarify, I want to match Author/Date (Table 1) against Author/Date (Table
2), but am troubled because the Author fields don't contain exactly the same
format. To me, it seems like it could be possible, since both fields will
contain (at least) the last name of the author. But, what do I know?
Thanks in advance for your input.
-Simple
Scientific Publications - author, year published, and title. With a query, I
would like to find out which articles are in Table 1, but that are not in
Table 2.
I need only the author and publication date information to identify a single
article. The publicaiton date field shouldn't be a problem, since the dates
will always be formatted identically (e.g. 1959). But there is one problem:
In Table 2, the authors are listed in the following format:
Smith, B.A
....while in Table 1, the authors are listed only by their last name (e.g.
Smith). Is there any way to compare these two tables, and find the missing
articles from Table 2, but while querying for information from these
non-identically-formatted "Author" fields?
To clarify, I want to match Author/Date (Table 1) against Author/Date (Table
2), but am troubled because the Author fields don't contain exactly the same
format. To me, it seems like it could be possible, since both fields will
contain (at least) the last name of the author. But, what do I know?
Thanks in advance for your input.
-Simple