<CFQUERY NAME="readpostage" DATASOURCE="esitest">
SELECT postagecost,
SUM(postagecost) AS totalpostage
FROM tblclientdailies, tblclients
where tblclients.clientname = tblclientdailies.clientname
and tblclients.acctstatus = 'A'
and dailiesdate BETWEEN #Date1# AND #Date2#
and tblclientdailies.clientname like '%marsh%'
GROUP BY postagecost, dailiesdate
order by dailiesdate
</CFQUERY
Here's the first 5 rows of data in the column:
.37
.37
.37
.00
.37
And here's what the <cfoutput> is returning (first five rows):
1.1100
0.3700
0.0000
1.1100
1.2000
See anything obviously wrong?
Thanks!
[Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

