Hello All,
I'm trying to return the number of records I have in my DB
for each month of the last year.
This is what use so far:
Is there a way to create it dynamically, whereby the query would
return 12 results, 1 result for each month ?
"Taxes are the fees we pay for civilized society" G.W.
I'm trying to return the number of records I have in my DB
for each month of the last year.
This is what use so far:
Code:
SELECT Count(ID) AS C_COUNT FROM exp_tbl_order
WHERE fldDATE >= '12/01/2003'
AND fldDATE <= '12/31/2003'
Is there a way to create it dynamically, whereby the query would
return 12 results, 1 result for each month ?
"Taxes are the fees we pay for civilized society" G.W.