Missing values are common in analytics tables and operational datasets. Interviewers ask this question to see whether you can distinguish between simply replacing NULLs and making a sound data-cleaning decision.
Explain how you would handle missing values in a SQL dataset. Your answer should cover:
NULLs as-is versus filling them with defaults or derived valuesThe interviewer is usually looking for a practical, SQL-oriented explanation rather than advanced statistical imputation. Focus on data quality checks, business context, and common PostgreSQL techniques such as COALESCE, CASE WHEN, filtering, and aggregation-based replacement strategies.