Using < and > in a select query

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

  1. #1

    Default Using < and > in a select query

    I am trying to write a select query to recieve results between two date ranges

    i have got these lines in my cfquery tag (example):

    and ii.date_time > 10/04/2005
    and ii.date_time < 20/04/2005

    when i comment the last line out, i get the results. but if i comment the
    first line out, I get nothing back (there are records between those dates).

    What i think may be the problem is that when i type '<' inside the cfquery
    tag, it turns blue. It may think i am trying to open a tag?

    Can anyone see what the problem may be?

    Thanks.

    Grynch Guest

  2. Similar Questions and Discussions

    1. help with a SELECT query
      Hi all, I have tables with columns names containing dots and I'm trying to build up queries as in: select it.n.cuore.1.lemma from a027; But I...
    2. Query of Query to select a title first letter
      The column "title" exists in a normal query. Need to select the first letter of the titles to build a list for a prev-next alphabetical search. ...
    3. select query help
      Dear This is the sample data! Plase give me the solution. I tried my level best to solve this query but failed to do so. Thanks in advance...
    4. Select query
      I would like to perform select on the following two tables, tblPoll PollID tblPollResults PollID AnswerID UserID
    5. problem with the select query
      Hi people, this is my first mail to the group. i am having a problem with the select query. There are a few values in few columns of a table with...
  3. #2

    Default Re: Using < and > in a select query

    > I am trying to write a select query to recieve results between two date ranges

    BETWEEN is the keyword here.

    Use:
    where column between someDate and someOtherDate

    > i have got these lines in my cfquery tag (example):
    > and ii.date_time > 10/04/2005
    > and ii.date_time < 20/04/2005
    Your syntax above is bung: you can't use dates in that format. What you're
    saying is like 10 divided by 4 divided by 2005. Format the dates AS dates
    (exactly how that is depends on your DB engine).

    > What i think may be the problem is that when i type '<' inside the cfquery
    > tag, it turns blue. It may think i am trying to open a tag?
    That's just your IDE getting confused with its syntax highlighting. It's
    got no bearing on the problem.

    --

    Adam
    Adam Cameron Guest

  4. #3

    Default Re: Using < and > in a select query

    Thanks Adam,

    I will give that a shot.

    I am using a MS Access DB driver, and i have the date_time column data type
    set as 'Date/Time' . I have tried using quotes around the date, which it does
    not like. I get a data type mismatch error. If i am selecting a date, it seems
    to work if i use the date without quotes, which i'm not actually sure how it
    works.

    Grynch Guest

  5. #4

    Default Re: Using < and > in a select query

    ii.date_time Between #CreateODBCDate("10/04/2005")# And #CreateODBCDate("20/04/2005")#

    Ken
    The ScareCrow 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