Ask a Question related to Coldfusion Database Access, Design and Development.
-
Grynch #1
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
-
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... -
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. ... -
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... -
Select query
I would like to perform select on the following two tables, tblPoll PollID tblPollResults PollID AnswerID UserID -
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... -
Adam Cameron #2
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
Your syntax above is bung: you can't use dates in that format. What you're> i have got these lines in my cfquery tag (example):
> and ii.date_time > 10/04/2005
> and ii.date_time < 20/04/2005
saying is like 10 divided by 4 divided by 2005. Format the dates AS dates
(exactly how that is depends on your DB engine).
That's just your IDE getting confused with its syntax highlighting. It's> 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?
got no bearing on the problem.
--
Adam
Adam Cameron Guest
-
Grynch #3
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
-
The ScareCrow #4
Re: Using < and > in a select query
ii.date_time Between #CreateODBCDate("10/04/2005")# And #CreateODBCDate("20/04/2005")#
Ken
The ScareCrow Guest



Reply With Quote

