sqlserver数据库,希望在特定字符串后面加上字符串

2024-12-21 03:54:03
推荐回答(2个)
回答1:

select col+(case when right(col,1)='a' then 'b' else '' end) as col from tb

回答2:

select replace(字段,'a','ab')
from 表
要这样?