In my Access database, I have two tables, from different sources, that have similar data. Each table has a customer number, and a customer name.
I'm trying to create a query that will show only names that don't match for a given customer number.
So, in Table_1, I have
3704 Fred Flintstone
3705 Barney Rubble
3706 Wilma Flintstone
In Table_2, I have
3704 Fred Flintstone
3705 George Jetson
3706 Wilma Flintstone
I've made a query that joins on customer number, and shows the name fields from both, so it looks like this:
3704 Fred Flintstone Fred Flintstone
3705 Barney Rubble George Jetson
3706 Wilma Flintstone Wilma Flintstone
But, what I want, is for it to only show the row that doesn't match:
3705 Barney Rubble George Jetson
Any suggestions on how to accomplish this? I'm using Access 2010
I'm trying to create a query that will show only names that don't match for a given customer number.
So, in Table_1, I have
3704 Fred Flintstone
3705 Barney Rubble
3706 Wilma Flintstone
In Table_2, I have
3704 Fred Flintstone
3705 George Jetson
3706 Wilma Flintstone
I've made a query that joins on customer number, and shows the name fields from both, so it looks like this:
3704 Fred Flintstone Fred Flintstone
3705 Barney Rubble George Jetson
3706 Wilma Flintstone Wilma Flintstone
But, what I want, is for it to only show the row that doesn't match:
3705 Barney Rubble George Jetson
Any suggestions on how to accomplish this? I'm using Access 2010