Preventing repeating record.

A

AhmtDY

At the result of a query, repeating records are found for a field that has
same value.
Even if I don't add the fields whose values are different each other into
the query.
How can I prevent this.
 
O

Ofer

Add to the select Statement distinct

Select Distinct field1,field2 From tableName

Or
Create a group by query
 
Top