我想将 ',' 字符更改为 '.' 在我的专栏之一。我可以制作替换语法,但它只是一个视图。我想为所有记录更新它!
select cast(replace(egysegar,',','.')as decimal (10,3)) from temporary
我会尝试下一个来更新
UPDATE temporary set egysegar = replace(egysegar,',','.') where egysegar is not null
但在我得到一个错误之后:
您正在使用安全更新模式,并且您尝试更新没有使用 KEY 列的 WHERE 的表 要禁用安全模式,请切换 Preferences -> SQL Queries 中的选项并重新连接。