Preventing repeating record.

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

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.
 
Add to the select Statement distinct

Select Distinct field1,field2 From tableName

Or
Create a group by query
 
Back
Top