I have a nvarchar(2000) column which may store a long text as below
There are a lot of blank rows at end of text. Is there a way to delete these blank rows (char(10))?
Using replace(column,char(10),'') is not acceptable. I don't want to mess up the content above. How to delete these char(10) only at the end of text?
I'm using SQL Server 2012.
Many thanks!!!

