I have created a database consisting of client name, job name, street, town, job#, and map#.
I have created an asp page that will search the database using drop down boxes from each field with "ANY" (%) as default choice. It works great!
How can I create a query that will allow me to pick 2 or 3 streets and one town and have it return those results?? I have been using "SELECT distinct town FROM masterindex" because the table has a lot of duplicates. I have been able to choose(highlight) multiple streets on asp page but when it searches it returns nothing.
Is it possible to use select distinct in this situation?
My other option is to create 3 total street drop down boxes, the first one defaulted to "ANY" and the next two defaulted to "NONE" so if I dont want to search more than one street.
Any help on this would be great.
Thanks
John