Repeating values

  • Thread starter Thread starter Jim
  • Start date Start date
J

Jim

Is there anyway of writing code that will only display one
unique value once instead of repeats? Thanks a lot
 
Lots of ways.
One is to use the DISTINCT keyword.

Select Distinct FName From Employees

Another is to use the Totals query button which does a Group By.

Select FName From Employees Group By FName

They both do the same thing.
 

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