Search on Multiple Values

Ask a Question related to Dreamweaver AppDev, Design and Development.

  1. #1

    Default Search on Multiple Values

    I want to search a field of the database for multiple values.
    I have A database of properies and want to allow the users to search on more than one property type is this possible in DW?


    Rsootarsing Guest

  2. Similar Questions and Discussions

    1. ANN: InterAKT Site Search - search in multiple tables
      Hello, We have just released a new product, MX Site Search, meant to help web developers and designers create a search form in their dynamic...
    2. building dynamic SQL string from multiple search values
      Ok I have to create on the fly a dynamic search query when the user completes a form, this could have from 1 up to about 15 search values. Is...
    3. Search multiple keywords across multiple fields
      Hi, I'm about halfway through building a search engine using ASP, SQL and Access. As part of that search engine I need to search multiple...
    4. Default Search for 2 field values return all results?
      Hi. I have two fields that users can search for. Either room number or Phone number. They can also put both a room number and a phone number and...
    5. RecordSet loses search values when paging & simply pages all records?
      Hello, I have set this script up to add paging to a search results page. Which on the first page works fine. I calculates how many pages there...
  3. #2

    Default Re: Search on Multiple Values

    Rsootarsing wrote:
    > I want to search a field of the database for multiple values.
    > I have A database of properies and want to allow the users to search on more than one property type is this possible in DW?
    >
    >
    SELECT.... WHERE property IN (prop1, prop2, prop3, ...)
    Get prop1, prop2, ... from a listbox with multiple selection, and you
    have your solution
    bthouin Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139