Which will of course return a job count of 1 for each row, since it is grouped by jobNumber.
To get the result set you want, if your DB supports it, you will need a referential subquery something like this: select j.jobPriority, j.jobNumber, (select count(*) as numofjobs from jobs where jobs.logdatetime = j.logdatetime) from jobs j where j.logdatetime >= #startdate# and j.logdatetime <= #stopdate# This assumes that logdatetime is just a date, not a date and time - you might need to convert to a date part only in the subquery so the equality holds true. -----Original Message----- From: Hua Wei [mailto:[EMAIL PROTECTED] Sent: Tuesday, 15 March 2005 12:14 To: CF-Talk Subject: RE: sql select statement help.. Cfcoder, ============================= select count(*) as numofjobs, jobPriority, jobNumber from jobs where logdatetime >= #startdate# and logdatetime <= #stopdate# group by logdatetime, jobPriority, jobNumber order by logdatetime,jobNumber -- if need orderby ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Logware (www.logware.us): a new and convenient web-based time tracking application. Start tracking and documenting hours spent on a project or with a client with Logware today. Try it for free with a 15 day trial account. http://www.houseoffusion.com/banners/view.cfm?bannerid=67 Message: http://www.houseoffusion.com/lists.cfm/link=i:4:198658 Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4 Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4 Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4 Donations & Support: http://www.houseoffusion.com/tiny.cfm/54

