Click here to Skip to main content
15,923,689 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I want to fetch all records which are added in last five minutes.
I am having table named as
SQL
customer
{
 name varchar(50),
wdate datetime
}

please help.
Posted
Updated 18-Jul-12 20:50pm
v2

You can use DATEDIFF :
SQL
select * from customer where DATEDIFF(mi,wdate, getdate()) < 5
 
Share this answer
 
Comments
djrocks0101 19-Jul-12 3:01am    
thanks :)
use between wdate between System.DateTime.Now.AddMinutes(-5) and System.DateTime.Now() lyk this in query
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900