SQL method to replace repeating blanks with single blanks

前端 未结 15 2052
既然无缘
既然无缘 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:52

    SELECT 'starting...' --sets @@rowcount
    WHILE @@rowcount <> 0
        update myTable
        set myTextColumn = replace(myTextColumn, '  ', ' ')
        where myTextColumn like '%  %'
    

提交回复
热议问题