Ask a Question related to Coldfusion Database Access, Design and Development.
-
toby007 #1
Help with a query please
Hi there
I am using MySQL.
I have created a query but I am not getting any rows returned from running the
query. I think it has something to do with the date(s).
select R.*, GR.*
from Roster as R
Inner Join Girls_roster as GR
on R.RosterId = GR.Rosterid
where GR.Girlid = #URL.GirlID# AND
RosterDate Between #CreateODBCDate(LSDateFormat (weekstartdate,
"dd/mm/yyyy"))# AND #CreateODBCDate(LSDateFormat (weekenddate, "dd/mm/yyyy"))#
Basically in the roster file I havethe rosterdate. I want to select records
for a particular person that fall between a startdate and the enddate.
Thanks in advance for assistance.
Regards
toby007 Guest
-
Query of Queries on query New type query
In CF5 we have a page that creates a query, using queryNew and querySetCell and the like, we then used dbtype="query" and gave it's name so we could... -
query of query throwing weird exception
One workaround: I had added rows to a cfsearch query, and set a numeric value in custom1 field that that query provides. A query of queries... -
Convert a query to a list, or find an item in a query
Hi All, I am using CFPOP to retrieve mail from a server, then delete each message after I retrieve it. What I want to do is to check that I don;t... -
CAML Query: Multiple Query Fields Issue
I need to Create a CAML Query Dynamically with VB to a Sharepoint WebService GetListItems Method. The User Could Select 1 to X Number of IDs... -
BCP query out executed by xp_cmdshell works fine from query analyzer but fails from VB Component
Hi all, I have a stored procedure which returns a vast number of record and i have to write the output into a csv file. I'm using BCP utility to... -
toby007 #2
Re: Help with a query please
I have worked out the problem is with the checking of the dates - but I still havent figured out exactly how to solve the issue. Any ideas?
toby007 Guest
-
The ScareCrow #3
Re: Help with a query please
Have not had a chance to look at your other problem yet, hopefully tonight.
But with this do not use dateformat when passing a date to an sql statement, just use createodbcdate
Ken
The ScareCrow Guest



Reply With Quote

