Ask a Question related to Macromedia Dynamic HTML, Design and Development.

  1. #1

    Default 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 = ''News'' AND links.`Date` = ''2005-08-17''

    I'd actually like it to query all information from 7 days ago forward.

    Thanks - Tod

    thlokey 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. 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...
    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: PHP Date Query

    I find the various time and date formats almost impossible to deal with
    using proper MySQL date fields and stuff. I just stick to using UNIX
    timestamps, and converting them to human readable formats when it comes to
    writing to the screen.


    thlokey wrote:
    > 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 = ''News'' AND links.`Date` = ''2005-08-17''
    >
    > I'd actually like it to query all information from 7 days ago
    > forward.
    >
    > Thanks - Tod

    rob::db 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