markstangroom
Technical User
i am trying to run a simple query to add up the totals in various column in a table between two date
my query is
SELECT SUM(inperson) AS totalinperson, SUM(byemail) AS totalemail, etc etc FROM reception WHERE inputdate BETWEEN '01/03/2004' AND '31/03/2004' ;
but the results are coming up with sum impossible figures.
what am i doing wrong?
my query is
SELECT SUM(inperson) AS totalinperson, SUM(byemail) AS totalemail, etc etc FROM reception WHERE inputdate BETWEEN '01/03/2004' AND '31/03/2004' ;
but the results are coming up with sum impossible figures.
what am i doing wrong?