Thông thường nó sẽ là thế này:
SELECT *
FROM yourtable
WHERE yourtimetimefield>='2010-10-01'
AND yourtimetimefield< '2010-11-01'
Nhưng vì bạn có dấu thời gian unix, bạn sẽ cần một cái gì đó như sau:
SELECT *
FROM yourtable
WHERE yourtimetimefield>=unix_timestamp('2010-10-01')
AND yourtimetimefield< unix_timestamp('2010-11-01')