I want to combine records with duplicate into single row. The surviving record will be updated with info from the duplicate if available. In the example below, I want to retain ID 500 then supply the missing data from its duplicate record which is ID 501. --->>>SQL Problem sample data image<<<---
CURRENT DATA:
ID Group Name Identifier1 Identifier2 Birthday
500 1 Christopher Col asdf NULL NULL
501 2 Christopher Col asdf qwerty 2/18/1987
502 1 Mickey vbnx tyui 1/25/1998
503 2 Minnie ghjk erty 4/23/2003
EXPECTED RESULT:
ID Group Name Identifier1 Identifier2 Birthday
500 1 Christopher Col asdf qwerty 2/18/1987
502 1 Mickey vbnx tyui 1/25/1998
503 2 Minnie ghjk erty 4/23/2003