I'm trying to create table where I store some data and one of the columns is "Start Time"(C# long in milliseconds). I want to remove all records from that table where Start Time is more than month ago via trigger or something like that. Is this possible and how can I achieve it?
EDIT: Transformation between long and DateTime is not a problem. It was more likely how to make this database to automatically clean that table with some kind of a trigger. I will transform it to DateTime if it is required.