在单选语句中,我需要RTRIM
在 SQL Server 2005 环境中使用字符串。
在您看来,实现这一目标的最有效技术是什么?
例子:
'ALPHA ' ==> 'ALPHA' (the blanks at the end are removed)
' BETA ' ==> ' BETA' (the blank in first position remains, the two blanks at the end are removed)
' GAMMA' ==> ' GAMMA' (the blank in first position remains)
预先感谢您的帮助。
编辑:我无权使用RTRIM
!!