79722347

Date: 2025-08-01 10:18:16
Score: 1
Natty:
Report link

Use DENSE_RANK() to generate unique IDs for address in silver_address, then join it in silver_people using city and country. Example:

sql

CopyEdit

DENSE_RANK() OVER (ORDER BY City, Country) AS ID

Join to map Address_ID for each person.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Sankavi