我有一个数据库,其中“ [proper n。]”一词很常见
看起来像
我想通过更新从第2列中删除“ [n.proper n。]”一词
任何人都可以帮助我如何使用sqlite3解决此问题
最佳答案
在oracle中,可以使用REPLACE
函数替换字符串。有关更多详细信息,请参考here。
这样尝试
UPDATE table
SET col2 = REPLACE(col2, ' [proper n.]', '');
我有一个数据库,其中“ [proper n。]”一词很常见
看起来像
我想通过更新从第2列中删除“ [n.proper n。]”一词
任何人都可以帮助我如何使用sqlite3解决此问题
最佳答案
在oracle中,可以使用REPLACE
函数替换字符串。有关更多详细信息,请参考here。
这样尝试
UPDATE table
SET col2 = REPLACE(col2, ' [proper n.]', '');