Consider 2 dates stored in 2 tables:
table_1: user_id data_1 update_date
table_2: user_id data_2 update_date
Is there a simple way to get the later of the 2 in MySQL?
If there is only one found, then it should return it.
EDIT: Added table details.
Use
GREATESTYour query might be more complex but that should give you the idea.