I would add [ModifiedDate] column to your table and update it's value each time new record is inserted or updated. Then you will be able to get data from the table based on that column:
SELECT * FROM [YourTable] WHERE [ModifiedDate] > '2008-01-20 10:20'