no, u have to run a query to check if there are any duplicates, and delete the duplicates
example removing duplicate emails (pseudo code):
query(SELECT ID, COUNT(*) AS total FROM members GROUP BY email)
while blablabla {
if $row[total] > 1
query(DELETE FROM members WHERE ID=$row[ID] LIMIT $row[total]-1)
}