I'm trying to make a query that finds first and last name combinations from two different tables, and displays the record associated with each of those combinations in one of the tables. For example, the two tables both have columns for FIRST and LAST names, and one of the tables has an ID associated with each person. I'd like to be able to get the ID for each person that comes up on both tables.
In playing around with this, I've tried just joining FIRST names from the two tables and querying. Even though there are certainly matches in the FIRST name category, the query returned a blank list.
Any thoughts? Thanks!