i need to find the records 10 min before system current datetime.
select Id,TimeStamp from ISAlive where RecordUpdatedDate < GETDATE() --SYSDATETIME()
You can do this with now()
SELECT Id, TimeStamp FROM ISAlive WHERE RecordUpdatedDate <= NOW() - INTERVAL 10 MINUTE;