Ask a Question related to Coldfusion - Advanced Techniques, Design and Development.
-
Merle_Hanson #1
Access Date Time Query
I am having some trouble with a query for Date Time in Access. I assume it is
because the Access formatted date is Date/Time with stored data that looks like
this: >>>> 1/1/05 7:06:39 PM <<<< I need to do 2 things - search by date - Jan
1, 05 and Time after 6pm... I am first trying to just pull date... But no
luck... select * from table where create_date = Jan 1, 2005 --> Have tried
01/01/05 and others... But I get no results... I know the data is there for
that date - because the data is stored as 1/1/05 7:06:39 PM Haven't started on
searching the time yet... Need some ideas on a fix... Thanx...
Merle_Hanson Guest
-
Query Access Via Date Ranges
Hey, crew... Just trying to figure out the best way to perform queries based on certain date ranges Example: Let's say I want to pull all... -
Date/Time format with MS Access & CF
Does anyone know of any workarounds regarding date/time format between MS Access and ColdFusion? Right now I have to set a column in my Access... -
Saving current date and time in ASP and ACCESS
Hi all, Im developing a simple web page and Im new to ASP. I want to save the current date and time in my MS ACCESS table I have a field in... -
MS Access time and date problem
As the topic summary says, I am having trouble inserting both time and dates into a MS Access database. My database has three fields, eventdate,... -
MS Access + date query
Hi I have got access table with two date/time field namely field1 and field2. I made one html form that inputs two dates (it's not mandatory... -
The ScareCrow #2
Re: Access Date Time Query
I believe you may be after something like the following
select * from table
where create_date > #CreateODBCDateTime(CreateDateTime(2005, 1, 1, 18, 00, 00))#
Ken
The ScareCrow Guest



Reply With Quote

