Recordset filter question for MySQL

Ask a Question related to Coldfusion Database Access, Design and Development.

  1. #1

    Default Recordset filter question for MySQL

    Hi I am looking to filter a query with three conditions and can not find the
    correct syntax. I am looking to search on a type of vehicle then a span of
    years.

    Thanks

    Shane

    Here is my SQL:

    SELECT *
    FROM saa.vehicle_ad
    WHERE vehicle_type = #FORM.vehicle_type# AND veh_year<= #FORM.veh_yearup# AND
    veh_year<= #FORM.veh_yeardown#
    ORDER BY vehicle_type ASC

    Shane930 Guest

  2. Similar Questions and Discussions

    1. XML with filter like Where in MySQL
      Hello, I use dynamic generated XML file (from php+mysql), I'd like filter my results using DataGrid. How can I prepare query like: ...
    2. Can't not choose field for filter in recordset dialogbox
      Dear All, I deveop website by DreamweaverMX. I have some problem with dynamic page for ASP when I click binding-->recordset if I choose field for...
    3. Recordset Filter question - Nested repeat region
      Hi, I am using Tom Steepers Tutorial to nest a recordset found here.... http://www.dmxzone.com/ShowDetail.asp?NewsId=394 Does anyone know...
    4. Filter recordset by item quantity...?
      Hi - using APS/Access/VB script. Have a shopping cart table displaying all products that are bought from my webshop. OrderID, Product name and...
    5. testing for a null Date in the Filter property of a RecordSet object?
      Hello, I am new to using the filter property. When I try publishDate = '' I get a type mismatch error. Any ideas? Thanks Rich
  3. #2

    Default Re: Recordset filter question for MySQL

    Forgot to add this is MySQL DB.
    Shane930 Guest

  4. #3

    Default Re: Recordset filter question for MySQL

    I noticed that you were checkingto see if your veh_year parameter was <b>less
    than or equal to</b> both values, it this what you intended? Also, you might
    try BETWEEN...

    Something like this?

    SELECT *
    FROM saa.vehicle_ad
    WHERE vehicle_type = #FORM.vehicle_type#
    AND veh_year BETWEEN #FORM.veh_yearup# AND #FORM.veh_yeardown#
    ORDER BY vehicle_type ASC

    Phil

    paross1 Guest

  5. #4

    Default Re: Recordset filter question for MySQL

    Hi Phil, thanks for the reply. I did get it worked out later yesterday. It
    seems I needed to put the second condition in the WHERE clause on its own line
    like you have above and it processes like it should.

    Thank you for your help.

    Shane

    Shane930 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