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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top