I have a situation, where in column 'starttime' has unix timestamp stored.
Now, I want to select only those records where:
currentTime = time(); // unix timestamp
currentTime >= startTime && currentTime <= (starttime + x)
Where x
is dynamic range of some seconds.