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.
有人可以告诉我一个查询,用一个点替换“myColumn”列中的每个逗号,而不会弄乱数字吗?
您将使用更新语句:
update t set myColumn = replace(myColumn, ',', '.') where myColumn like '%,%'