S
sh
I have 2 tables of data that have a contract no, customer
name and value columns.
These tables may have similar records e.g. the same
contract no, customer name and value may appear in both
tables.
I need to run a query that will find out those records
which appear in both tables (which I can do), but to also
display ONLY those records where the value has changed.
e.g.
Table1
Contract No Customer Name Value
1001 Smith 50
1002 Jones 10
1003 Green 40
Table2
Contract No Customer Name Value
1001 Smith 50
1002 Jones 30
The query I wish to run should find the record for Jones.
Can anyone help?
name and value columns.
These tables may have similar records e.g. the same
contract no, customer name and value may appear in both
tables.
I need to run a query that will find out those records
which appear in both tables (which I can do), but to also
display ONLY those records where the value has changed.
e.g.
Table1
Contract No Customer Name Value
1001 Smith 50
1002 Jones 10
1003 Green 40
Table2
Contract No Customer Name Value
1001 Smith 50
1002 Jones 30
The query I wish to run should find the record for Jones.
Can anyone help?