获取格式字符串第idx个值及实例
--根据索引idx值获取格式串中第idx个值 如数据'11,12,13,14,15,16'
方法:格式串+分隔符;@str='11,12,13,14,15,16'+','
select dbo.GetStrByindex('11,12,13,14,15,16,', ',', 3); -- 13
create function [dbo].[GetStrByindex](@str varchar(8000),@split varchar(10),@idx int)
--@str:待查找字符串
returns varchar(100)
as
begin
declare @inx int
set @inx=0
WHILE(CHARINDEX(@split,@str)<>0)
begin
SET @INX=@INX+1
if @inx=@idx
--第一个@split之前的字符串
return SUBSTRING(@str,1,CHARINDEX(@split,@str)-1)
--将第一个@split后面的字符串重新赋给@str
SET @str=STUFF(@str,1,CHARINDEX(@split,@str),'')
end
return '';
end
GO
此过程可能在数据维护时,偶尔会遇到。
/*
参数1:@Type 整型 0:新增1:修改2:删除
参数2:@Weld_id 字符串 主表GuID
参数3:@Param 字符串,需严格按照如下格式组织(字段内容中不包含字符“|”)
民工|日期|方法|层次|电流|电压|标识号1|牌号1|规格1|标识号2|牌号2|规格2
参数4:@ID 整型 子表唯一字典 返回值 -1: 插入成功; 0:更新成功; 1:参数@Param格式错误; 2:日期格式错误; 3:更新失败; 4: 插入失败; 5:删除成功
SQL调用实例
*/
if (exists (select * from sys.objects where name = 'up_OperateWeld_Container'))
drop proc up_OperateWeld_Container
go
Create PROC [dbo].[up_OperateWeld_Container]
(
@Type int, --0: 新增 1:修改 2:删除
@Weld_id varchar(100), --主表guid
@Param nvarchar(4000),
@ID int = -1 --新增无用。修改,删除时需传入该ID,定位修改删除信息
)
as
--判断参数是否正常
if len(@Param+'|')-len(replace(@Param+'|', '|', ''))<>12
return 1; --参数2格式错误
--解析参数
declare @SQL varchar(8000), @Count int,
@Param1 varchar(50) = dbo.GetStrByindex(@Param+'|', '|', 1),
@Param2 varchar(50) = dbo.GetStrByindex(@Param+'|', '|', 2), --日期信息
@Param3 varchar(50) = dbo.GetStrByindex(@Param+'|', '|', 3),
@Param4 varchar(50) = dbo.GetStrByindex(@Param+'|', '|', 4),
@Param5 varchar(50) = dbo.GetStrByindex(@Param+'|', '|', 5),
@Param6 varchar(50) = dbo.GetStrByindex(@Param+'|', '|', 6),
@Param7 varchar(50) = dbo.GetStrByindex(@Param+'|', '|', 7),
@Param8 varchar(50) = dbo.GetStrByindex(@Param+'|', '|', 8),
@Param9 varchar(50) = dbo.GetStrByindex(@Param+'|', '|', 9),
@Param10 varchar(50) = dbo.GetStrByindex(@Param+'|', '|', 10),
@Param11 varchar(50) = dbo.GetStrByindex(@Param+'|', '|', 11),
@Param12 varchar(50) = dbo.GetStrByindex(@Param+'|', '|', 12);
if isdate(@Param2)<>1
return 2 --日期无效
if @Type=0
begin
--不存在则插入
begin try
begin tran
--插入焊工操作
insert into info_detail(Weld_id, col1, date, col3,col4,col5,col6,col7,col8,col9,col10,col11,col12)
values (@Weld_id,@Param1,@Param2,@Param3,@Param4,@Param5,@Param6,@Param7,@Param8,
@Param9,@Param10,@Param11,@Param12);
commit tran
return -1 --插入成功
end try
begin catch
rollback;
return 4 --插入失败
end catch
end else if @Type=1 begin
begin try
begin tran
--更新焊工操作
update info_detail set col1 = @Param1,
date = @Param2,
col3 = @Param3,
col4 = @Param4,
col5 = @Param5,
col6 = @Param6,
col7 = @Param7,
col8 = @Param8,
col9 = @Param9,
col10 = @Param10,
col11 = @Param11,
col12 = @Param12
where ID=@ID;
commit tran
return 0 --更新成功
end try
begin catch
rollback;
return 3 --更新失败
end catch;
end else begin
--删除成功
delete from info_detail where ID=@ID;
return 5;
end;
GO /*
调用实例 --新增
declare @idx int
exec @idx=up_OperateWeld_Container 0, 'b8f8964a-3e0e-47ce-8302-097c68bd7033',
'100|2019-09-12|SAW|层次|电流|电压|标识号1|牌号1|规格1|标识号2|牌号2|规格2',
-1
select @idx --修改
declare @idx int
exec @idx=up_OperateWeld_Container 1, 'b8f8964a-3e0e-47ce-8302-097c68bd7033',
'100|2019-09-12|SAW|层次|电流|电压|标识号1|牌号1|规格1|adfdf|牌号2|规格2',
49217
select @idx --删除
declare @idx int
exec @idx=up_OperateWeld_Container 2, 'b8f8964a-3e0e-47ce-8302-097c68bd7033',
'100|2019-09-12|方法|层次|电流|电压|标识号1|牌号1|规格1|标识号2|牌号2|规格2',
49217
select @idx
*/
获取格式字符串第idx个值及实例的更多相关文章
- Oracle数据库 获取CLOB字段存储的xml格式字符串指定节点的值
参照: Oracle存储过程中使用游标来批量解析CLOB字段里面的xml字符串 背景:在写存储过程时,需要获取表单提交的信息.表单信息是以xml格式的字符串存储在colb类型的字段dataxml中,如 ...
- c# json转换成dynamic对象,然后在dynamic对象中动态获取指定字符串列表中的值
using Newtonsoft.Json;using System;using System.Collections.Generic;using System.Linq;using System.T ...
- C#获取Json字符串中的某个值
问题描述: json数据格式{"resCode":0,"resMag":"aaa","data":[{"par ...
- 获取xml字符串中的属性值
pagexml = @"<?xml version='1.0' encoding='utf-8'?> <DATAPACKET Version='2.0'> <M ...
- JQuery设置获取下拉菜单选项的值 多实例
分享下JQuery如何设置获取下拉菜单某个选项的值,多种方法,值得收藏. JQuery获取和设置Select选项 获取Select :获取select 选中的 text :$(“#ddlRegType ...
- 获取Json数据某节点的值
时间匆忙,直接上代码,回家还得做清蒸鱼呢! #region 获取Json字符串某节点的值 /// <summary> /// 获取Json字符串某节点的值 /// </summary ...
- 获取字符串对应的MD5值 (AL16UTF16LE)
CREATE OR REPLACE FUNCTION fn_md5_utf16le (InputString IN VARCHAR2) RETURN VARCHAR2 IS retval ); /** ...
- .NET获取Html字符串中指定标签的指定属性的值
using System.Text; using System.Text.RegularExpressions; //以上为要用到的命名空间 /// <summary> /// 获取Htm ...
- JS如何获取url查询字符串的键和值?
/** * 根据url查询字符串里的键名获取其值 */function getSearchString(key, search) { // 获取URL中?之后的字符 var str = search; ...
随机推荐
- PWM是如何调节直流电机转速的?电机正反转的原理又是怎样的?
电机是重要的执行机构,可以将电转转化为机械能,从而驱动北控设备的转动或者移动,在我们的生活中应用非常广泛.例如,应用在电动工具.电动平衡车.电动园林工具.儿童玩具中.直流电机的实物图如下图所示. 1- ...
- DDD 实战记录——实现「借鉴学习计划」
「借鉴学习计划」的核心是:复制一份别人的学习计划到自己的计划中,并同步推送学习任务给自己,并且每个操作都要发送通知给对方. 它们的类图如下: 它们的关系是一对多: // Schedule entity ...
- java自学-常用api
API(Application Programming Interface),应用程序编程接口.Java API是JDK中提供给我们使用的类的说明文档.即jdk包里边写好的类,这些类将底层的代码实现封 ...
- C++双指针滑动和利用Vector实现无重复字符的最长子串—力扣算法
题目: 力扣原题链接:https://leetcode-cn.com/problems/longest-substring-without-repeating-characters/ 给定一个字符串, ...
- 如何将本地的项目推送到github
一.创建密钥 1.本地终端命令行生成密钥 访问密钥创建的帮助文档:https://help.github.com/en/github/authenticating-to-github/generati ...
- Spark Streaming任务延迟监控及告警
概述 StreamingListener 是针对spark streaming的各个阶段的事件监听机制. StreamingListener接口 //需要监听spark streaming中各个阶段的 ...
- English:Day-to-day 1104
\ ------------------------------ editor by enomothem ------------------------------ It snowed throug ...
- libnl概述
以下三个库都基于其核心库libnl: libnl-route:用于和Kernel中的Routing子系统交互. libnl-nf:用于和Kernel中的Netfilter子系统交互. libnl-ge ...
- docker jenkins安装
https://hub.docker.com/r/jenkins/jenkins jenkins的docker官方镜像地址 https://jenkins.io/ jenkins官方网站 环境: 阿里 ...
- Nginx 常用模块
Nginx 常用模块 1. ngx_http_autoindex_module # ngx_http_autoindex_module模块处理以斜杠字符(' / ')结尾的请求,并生成一个目录列表. ...