问题描述
你好
请写下查询
表名是:abctable
我的数据在下面的格式中更新
实际数据 -
R06E310.0N
R06E310.0V
R06E315.0N
R06E315.0V
R06E320.0N
R06E320.0V
R06E35.5N
R06E35.5V
R06F31.0N
想要像这样更新 -
R06E3-10.0N
R06E3-10.0V
R06E3-15.0N
R06E3-15.0V
R06E3-20.0N
R06E3-20.0V
R06E3-5.5N
R06E3-5.5V
R06F3-1.0N
所以请写一个查询。
谢谢
Shubham Gupta
Hello
please write query
table name is : abctable
my data to update in below formate
actual data-
R06E310.0N
R06E310.0V
R06E315.0N
R06E315.0V
R06E320.0N
R06E320.0V
R06E35.5N
R06E35.5V
R06F31.0N
wants to update like this-
R06E3-10.0N
R06E3-10.0V
R06E3-15.0N
R06E3-15.0V
R06E3-20.0N
R06E3-20.0V
R06E3-5.5N
R06E3-5.5V
R06F3-1.0N
so please write a query for this.
Thanks
Shubham Gupta
推荐答案
update abctable set columnName=
substring(columnName,1,5)+'-'+substring(columnName,7,len(columnName)-5)
ref。
[]
这篇关于拆分行数据并插入符号的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!