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.
 
Back
Top