I need to write a script to delete any rows where the rec_date is older than 365 days Can anyone help? Here is my table structure: CREATE TABLE [dbo].[forms_holder]( [object_id] [int] IDENTITY(1,1) NOT NULL, [form_family] [char](1) NOT NULL, [file_name] [varchar](20) NOT NULL, [language] [char](2) NOT NULL, [unit] [varchar](50) NOT NULL, [state] [varchar](50) NOT NULL, [rec_date] [datetime] NOT NULL, [generated_file] [varbinary](max) NOT NULL,PRIMARY KEY CLUSTERED ( [object_id] ASC)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, FILLFACTOR = 90) ON [PRIMARY]) ON [PRIMARY]GO