Filtering "No Duplicates"

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

Guest

Good Morning,
Could anyone tell me how to write an expression in a query to basically say
"No Duplicates" I only want to use this in one coloumn.

Cheers

FFM
 
It all depends on how you define a duplicate...

This is my gut reaction:
SELECT DISTINCT * FROM [Your Table Name]

Cheers,
Jason Lepack
 
Back
Top