depuplication based on other empty fields?
Hi, I've duplicated records in recipients table.
The deduplication field would be: national_id, that is the one repeated. However, I just want to keep the record that have info in the other fields: first_name and last_name.
How to remove the recoeds that are duplicated, based one national_id, and have the first_name and last_name fields empty?
+-------------+------------+-----------+-------------+
| national_id | first_name | last_name | email |
+-------------+------------+-----------+-------------+
| 123 | jose | perez | jp@mail.com |
+-------------+------------+-----------+-------------+
| 123 | | | |
+-------------+------------+-----------+-------------+

When i select other, in the next screen, how to tell the deduplication activity to keep only the record where First Name is not empty.

the Deduplucation activity will just separete in a temp table the records not duplicated from the duplicated ones, right?. ... but how do I actually remove the duplicated ones from recipients? The ones that doesn't have first_name or last_name
