About filtering redundant value

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • sukatoa
    Contributor
    • Nov 2007
    • 539

    About filtering redundant value

    Is it possible to filter redundant data in a query?

    For example, i have here

    dog
    cat
    cow
    cat
    dog
    dog
    cat
    cow
    cat

    I'm just wondering if i could have a resultset that only contains

    dog, cat, cow

    any suggestions?
  • r035198x
    MVP
    • Sep 2006
    • 13225

    #2
    Have a look at DISTINCT.

    Comment

    • sukatoa
      Contributor
      • Nov 2007
      • 539

      #3
      Thank you r035198x .....

      Comment

      Working...