Hi all,I have been asked to delete a selection of records from a SQL database. I have created a view which SELECTS the records I need to delete. But I have no idea how to convert to DELETE them!The SQL statement currently is:SELECT dbo.TransPerPaySequence.*, PaySequence AS PaySeqFROM dbo.TransPerPaySequenceWHERE (PaySequence IN (138, 125, 115, 110, 98, 90, 84, 76, 69, 63, 54, 46, 36, 25))
Can someone please help with the correct code to convert this to a DELETE action.Many thanks