Hi,
I would like to perform queries which lookup data from the past week,day,month etc. Is this possible? I have a timestamp field so the data does all have a relevant date.
The timestamp field is in the format "09/01/2003 17:53:46"
The query I want to use it on is...
SELECT page
,COUNT(*) AS indexCount
FROM usertrack
WHERE page="/index.cfm"
/*****AND ONLY FOR RECORDS OF THE PAST WEEK*****/
GROUP BY page;
Thanks inadvance I don't know if this is possible...
I would like to perform queries which lookup data from the past week,day,month etc. Is this possible? I have a timestamp field so the data does all have a relevant date.
The timestamp field is in the format "09/01/2003 17:53:46"
The query I want to use it on is...
SELECT page
,COUNT(*) AS indexCount
FROM usertrack
WHERE page="/index.cfm"
/*****AND ONLY FOR RECORDS OF THE PAST WEEK*****/
GROUP BY page;
Thanks inadvance I don't know if this is possible...