deleting entries

  • Thread starter Thread starter L
  • Start date Start date
L

L

I need to know if there is any way that I can have my
database delete entries after they are there for a
specified amount of time (i have a field named Days Posted
and a field called date). Does anyone know if I can do
this, and if so how can I program my code.
thanks,
L
 
I need to know if there is any way that I can have my
database delete entries after they are there for a
specified amount of time (i have a field named Days Posted
and a field called date).

DELETE FROM MyTable
WHERE DaysPosted > 90;


Haven't I already answered this one?

Tim F
 
Back
Top