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

  1. #1

    Default Date Query

    I am attempting to pull information from a database and the main criteria of
    how I retrieve the information in a date format.

    The startdate and enddate are both datetime in a SQL server 2000 database.

    When I put in my query I am returning nothing on this time when in the
    database I have the following information.

    23 3 1/1/2006 3/4/2006 0 2980 Winter

    24 3 3/4/2006 5/27/2006 1 4980 Spring

    25 3 5/27/2006 8/26/2005 1 6380 Summer

    26 3 7/3/2006 7/10/2006 1 7380 4th of July

    27 3 7/10/2006 8/26/2006 1 6380 Summer

    28 3 8/26/2006 9/9/2006 1 5380 Late Summer

    29 3 9/9/2006 10/14/2006 0 4680 Fall

    30 3 10/14/2006 11/18/2006 0 2980 Late Fall

    31 3 11/18/2006 11/25/2006 1 4680 Thanksgiving

    32 3 11/25/2006 12/23/2006 0 2980 Late Winter

    33 3 12/23/2006 12/30/2006 1 3980 Christmas


    What am I doing wrong?



    SELECT *
    FROM table
    WHERE (Startdate > '07/07/06') AND (Enddate < '07/14/06')

    koeniga Guest

  2. Similar Questions and Discussions

    1. date query problem, date in variable
      I am using the following query : $query_archief = "SELECT * FROM vacatures where dd_eind_plaatsing < $dd_eind_plaatsing_archief1" note:...
    2. More Date Query Problem
      Hi, I have written the code below to return only data that are recorded this month: <cfquery name="getInfo" datasource="main_acc" dbtype="odbc">...
    3. PHP Date Query
      I'm trying to create a recordset where I query a date field in my database. I can't figure the syntax. A little help here: WHERE Category =...
    4. a date query question
      I have this update query: UPDATE AccountsIpLogs SET LoggedIn = '0' I would like to add below WHERE statement but I don't know how to write it: ...
    5. Date query in ASP
      ASP/Scripting newbie question here. I have an access database that I am writing ASP pages to query and return the results. The end user can put...
  3. #2

    Default Re: Date Query

    Nothing is returned because your table contains zero (0) records where the
    StartDate is greater than '07/07/2006' AND then EndDate is less than
    '07/14/2006'. What information are you trying to retrieve?

    mxstu 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