I’m trying to think of the most efficient way to check if data from one table has changed in another. Ex:
Table a
id name age
111 John 30
222 Jill 32
Table b
id name age
111 John 30
222 Jill 33
333 Jacob 35
Here we can see that data for 1 row has changed i.e for id 222.
2
Answers
You just need to join them using the your key: