Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有这个专栏
专栏 伦敦/巴黎 多伦多/巴黎 东京/巴黎
我只想更新“巴黎”这个词
我想要的结果:
专栏 伦敦/土耳其 多伦多/土耳其 东京/土耳其
我可以有这样的条件,如果巴黎旁边是多伦多,我将其更新为柏林吗?
编辑。 我想知道oracle或sybase中的查询。(不知道能不能分开在ora和syb中问这个问题,希望版主给点建议)
您可以使用 TSQL 的替换功能来执行此操作
UPDATE myTable SET MyColumn = REPLACE(MyColumn, 'paris', 'turkey') WHERE MyColumn LIKE '%paris%'
利用:
update #t set col1 = str_replace(col1, 'paris', 'turkey')