Use DENSE_RANK() to generate unique IDs for address in silver_address, then join it in silver_people using city and country. Example:
DENSE_RANK()
silver_address
silver_people
sql
CopyEdit
DENSE_RANK() OVER (ORDER BY City, Country) AS ID
() OVER (ORDER BY City, Country) AS ID
Join to map Address_ID for each person.