Is there a way to set up SQL Server to automatically delete some rows based on certain conditions?
For example I have a table TblNote
with a column createDate
to store date that row was created, and a column deleteDate
to store date so that this row will be deleted when deleteDate
matches current date.
How can I set up server to do that?