M
Marios
Hello everyone out there
I have a table that has a lot of duplicate entries. It mas mainly two fields
an 'ID' field, and a Field_B.
Question 1: How can I delete duplicate entries;
Question 2: I want to run this SQL
SELECT Field_b, Count(ID)
FROM TAble
GROUP BY Field_b;
but due to duplicate entries I do not get proper results. DISTINCT does not
work. Is there a way to run this query and get results for unique records?
Thanks a lot
I have a table that has a lot of duplicate entries. It mas mainly two fields
an 'ID' field, and a Field_B.
Question 1: How can I delete duplicate entries;
Question 2: I want to run this SQL
SELECT Field_b, Count(ID)
FROM TAble
GROUP BY Field_b;
but due to duplicate entries I do not get proper results. DISTINCT does not
work. Is there a way to run this query and get results for unique records?
Thanks a lot