I'm just going to ask how to query combine datas with same column and ignore all null values
actual table:
id | first_name | last name | age | unique_id
1 | Doe | | | 111
2 | | John | | 111
3 | | | 32 | 111
4 | Reeves | | | 222
5 | | Keanu | | 222
wanted query result :
first_name | last name | age | unique_id
Doe | John | 32 | 111
Keanu | Reeves | | 222
Thanks!!