Multiple Criteria

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • nnightwolf
    New Member
    • Feb 2007
    • 5

    #1

    Multiple Criteria

    hello guys,
    i have a database which has many fields pretty much the same (such as cities).
    the are 148 records and 10 cities(which are repeated). I want to put the cities in a combobox but 1 each time not all of them.Can you help me plz
  • samycbe
    New Member
    • Feb 2007
    • 83

    #2
    on the query select distinct keyword for avoiding the duplication

    example

    select disstinct(cityn ame) from <table>

    and fill the database in combo

    Comment

    Working...