if you are getting repeated rows then I think there is not any primary key defined in the table so count values based on all column name.Run this script,it will return all rows which occurs more than once in the table.
SELECT *
FROM
YourTableName
GROUP BY
Name,PhoneNumber,Address //if your table has three columns but it will be easy with id
HAVING
COUNT(*) > 1