954,566 Members — Technology Publication meets Social Media
Username:
Password:
Lost login information?
Have something to say? Contribute New Article Reply to this Article

data from getting data from 30 min before

i'm trying to get data of 30 minutes ago to now.. any idea with the query

SELECT DateDiff("n",Now(),[TimeStamp]) AS [Time]
FROM RIMData_RAW
GROUP BY DateDiff("n",Now(),[TimeStamp])
HAVING ((Now()>30));
kurohige
Newbie Poster
11 posts since Sep 2010
Reputation Points: 8
Solved Threads: 0
 
SELECT DateDiff("n",Now(),[TimeStamp]) AS [Time]
FROM RIMData_RAW
where DateDiff("n",Now(),[TimeStamp]) > 30
adam_k
Practically a Posting Shark
803 posts since Jun 2011
Reputation Points: 256
Solved Threads: 149
 

This question has already been solved

Post: Markdown Syntax: Formatting Help
You
View similar articles that have also been tagged: