I have two tables. I want to make a query that will show all the fields from table 1, but only if the data from column A in table one actually exists in column C from table two. I'm sure there might be a simple way to do this I just cannot figure it out. When I tried to build it, I ended up getting way more records than I even have on either of the tables. Basically, it was duplicating table 1 each time it noticed the data from table 2.
An Idea of what I have:
Table 1, Column A has a provider name. The other columns have all sorts of other data about them.
Table 2, column C has a provider name. (these are the only providers I care to look into)
I need to see all the data from table 1, but only if the provider in column A on table one is also listed on Table 2.
NOTE: Each table may have a single provider listed multiple times.