SQL method to replace repeating blanks with single blanks

前端 未结 15 2051
既然无缘
既然无缘 2020-12-01 17:52

Is there a more elegant way of doing this. I want to replace repeating blanks with single blanks....

   declare @i int

    set @i=0
    while @i <= 20
           


        
15条回答
  •  不知归路
    2020-12-01 18:49

    select 
        string = replace(
                    replace(
                        replace(' select   single       spaces',' ','<>')
                        ,'><','')
                    ,'<>',' ')
    

    Replace duplicate spaces with a single space in T-SQL

提交回复
热议问题