Ask a Question related to Coldfusion - Advanced Techniques, Design and Development.

  1. #1

    Default Re: Date issue

    Any resolution dealing with a simple Access database connection? I'm trying to output users whose birthday is within 5 days plus or minus.
    Stoach Guest

  2. Similar Questions and Discussions

    1. Date/Time Issue
      The code looks okay. Are "EventTime" and "EventTimeTo" date/time columns in your table? If you output the query values without the LSTimeFormat()...
    2. MySQL Date issue
      Anyone else have this issue? I've got a query that pulls dates out of a MySQL db, and often times the date fields have "0000-00-00" in the date...
    3. is this a date issue??
      hi all, I have posted this to inetserver.asp.general too..I thought I had crossposted but somehow I didn't, so please accept my apologies if the...
    4. Date issue in php and mysql
      On Mon, 25 Aug 2003 12:59:19 +0200 "Ricki Susic" <rickFJERNDETTEi@webfabrikken.net> wrote: You will have to be a little more specific about...
    5. *very* strange date issue
      hi, i am having big issues in deploying my asp.net web application to our web server. dates do not behave the same as on my development...
  3. #2

    Default Re: Date issue

    Yes, in a way....I had to have it done for a deadline and was having so many
    issues so what I ended up doing was placing the year in a seperate field. This
    is not ideal by any means, but it works for my purpose until I have the time to
    spend on it. This is the code I am using:

    Select name, phone, emp_bd
    FROM phone_list
    WHERE
    emp_bd BETWEEN (Now()-1) AND (Now()+7)
    ORDER BY emp_bd

    That's it! All you have to do is place the year in a seperate field and adjust
    the -+ to your amts.

    Hope that helps!

    Webtress 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