我的表有一列包含如下字符串:" HRM_APPLICATION_DELAY_IN"
My table has one column that contain strings like: " HRM_APPLICATION_DELAY_IN"
我想对这一列的每一行进行波纹管操作
I want to perform bellow operations on each row on this column
_""hrm_Application_Delay_In"需要转换帮助.感谢提前
Need help for conversion. Thanks for advance
这里是一个实现它的函数:
Here is a function to achieve it:
create function f_test
(
@a varchar(max)
)
returns varchar(max)
as
begin
set @a = lower(@a)
while @a LIKE '%\_%' ESCAPE '\'
begin
select @a = stuff(@a, v, 2, upper(substring(@a, v+1,1)))
from (select charindex('_', @a) v) a
end
return @a
end
示例:
select dbo.f_test( HRM_APPLICATION_DELAY_IN')
结果:
hrmApplicationDelayIn
这里是一个如何用函数编写语法的例子来更新你的表:
To update your table here is an example how to write the syntax with the function:
UPDATE <yourtable>
SET <yourcolumn> = dbo.f_test(col)
WHERE <yourcolumn> LIKE '%\_%' ESCAPE '\'
这篇关于如何更改字符串中的大小写的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!
修改现有小数位信息Modify Existing decimal places info(修改现有小数位信息)
多次指定相关名称“CONVERT"The correlation name #39;CONVERT#39; is specified multiple times(多次指定相关名称“CONVERT)
T-SQL 左连接不返回空列T-SQL left join not returning null columns(T-SQL 左连接不返回空列)
从逗号或管道运算符字符串中删除重复项remove duplicates from comma or pipeline operator string(从逗号或管道运算符字符串中删除重复项)
将迭代查询更改为基于关系集的查询Change an iterative query to a relational set-based query(将迭代查询更改为基于关系集的查询)
将零连接到 sql server 选择值仍然显示 4 位而不是concatenate a zero onto sql server select value shows 4 digits still and not 5(将零连接到 sql server 选择值仍然显示 4 位而不是 5)