Hi,
I have 3 tables that are related, Table 1 (User) is related to Table 2 (Review) and Table 2 is related to Table 3 (Country). The problem I have is that every time a User has a Review a new record is created in Review and new records are created in Country, and the previous records for that user in Review and Country now are no longer relevant. So I need to write some SQL where it only joins a User to his latest Review and Countries. Is this possible?
I have 3 tables that are related, Table 1 (User) is related to Table 2 (Review) and Table 2 is related to Table 3 (Country). The problem I have is that every time a User has a Review a new record is created in Review and new records are created in Country, and the previous records for that user in Review and Country now are no longer relevant. So I need to write some SQL where it only joins a User to his latest Review and Countries. Is this possible?