Hello,I need to record posted user comments in an nvarchar field so that when I databind it to an ASP control it would look something like this:JSMITH(01/01/2007): added a comment.JSMITH(01/01/2007): added another comment.JSMITH(01/01/2007): added yet another comment.I know that this should probably be in a seperate child table and the comments posted seperate records, but just humour me for now!Check my code below and I have highlighted where the carridge return should go.CREATE PROCEDURE procAddComment( @CP int, @Comment nvarchar(1000), @UserName nvarchar(50)) ASDECLARE @CPID nvarchar(50)DECLARE @CurrentComments nvarchar(2000)/* Get current data */SELECT @CPID = CPID, @CurrentComments=UserComments FROM tbl_tmp_CP WHERE CP = @CP/* Update the comment with new stuff */UPDATE [dft-traffic-v1].[dbo].[tbl_tmp_CP]SET [UserComments] = @CurrentComments + <#### carridge return in here####> + @Username + '('+ FORMAT(GETDATE(),"dd/mm/yyyy") + '): ' + @CommentWHERE CPID = @CPIDGO