You can use a third party tool for this that can read database backups and compare them to a live database (or to other database backups). Try ApexSQL Data Diff.
- Compare a live database to a database backup

- Filter by tables, so you don't waste time on other data
- You can use the filter to specify specific records


If this is not possible, then compare all records and tables, and once you see them in the grid, manually select the records you want to script

4 Generate the script to modify the records
You'll get the script such as this
DELETE FROM [HumanResources].[Shift] WHERE [ShiftID]=6
UPDATE [HumanResources].[Shift] SET [ModifiedDate]='20020601 00:00:00.000' WHERE [ShiftID]=1
INSERT INTO [Sales].[ShoppingCartItem] ([ShoppingCartItemID], [ShoppingCartID], [Quantity], [ProductID], [DateCreated], [ModifiedDate]) VALUES (2, N'14951', 3, 862, '20071211 17:54:07.603', '20071211 17:54:07.603')