Just figured that out yesterday:
SELECT * FROM some_table
WHERE UNIX_TIMESTAMP(NOW()) > (UNIX_TIMESTAMP(timestamp_field) + 7200)
The 7200 is the number seconds in two hours.
One hour has 3600 seconds, so whatever amount of hours you want to check for, just multiply it by 3600.
cheers,
DrTebi