I need to insert data into a text field but do not want to overwrite the existing data in this field. I only want to add the new data at the end of the line. The code I currently have to do the insert is listed here
Insert into dbo.Deployment
Set dbo.Deployment.Comments = dbo.NewData.Comments
From dbo.NewData
Where dbo.NewData.MachineID = dbo.NewData.MachineID
Any help would be appreciated
Insert into dbo.Deployment
Set dbo.Deployment.Comments = dbo.NewData.Comments
From dbo.NewData
Where dbo.NewData.MachineID = dbo.NewData.MachineID
Any help would be appreciated