Level 6 - ExpertOutput Prediction Questionsm1 data modeling
Output: Identify Duplicate Natural Key
Given this data, what emails are duplicates? SELECT email FROM users GROUP BY email HAVING COUNT(*) > 1;
Given this data, what emails are duplicates? SELECT email FROM users GROUP BY email HAVING COUNT(*) > 1;