gpt4 book ai didi

sql - 拆分带有 2 个值的分隔字符串。SQL Server 2008。你能帮我吗?

转载 作者:行者123 更新时间:2023-12-04 06:50:28 26 4
gpt4 key购买 nike

我将一个分隔字符串传递给由 empId|ProductId + 逗号作为分隔符组成的存储过程
目的是填充链接表。使用 SQL Server 2008

     EmployeeOrderLink  Table to be filled
EmpId
OrderId
ProductId

可能的 key 示例
     MyKeyIds="EmpId|ProductId,
EG 2232|33,4555|111,43343|65 etc...

我如何遍历字符串拆分它并插入到表中,例如
   while MyKeyIds  ???
Logic --PLEASE NOTE THAT EACH KEY IS COMPOSED BY 2 VALUES
AND SEPARATED BY THE COMMA.DELIMETER IS USED TO SEPARATE THE INNER VALUES OF THE KEY

@myEmpID=--Get EmpId from split string
@myProductId =Get productId from split string

INSERT EmployeeOrderLinkend(EmpId,OrderId,ProductId)
VALUES(@myEmpID,@OrderIdPassedAsParamInSP, @myProductId)
END

关于如何拆分上述键并提取适当值的任何建议?
非常感谢

最佳答案

Here是 SQL 中 split 函数的一个示例。另一个 tutorial is this .使用它我想我会做以下在逗号处拆分。然后,您必须在 | 处添加要拆分的代码。还。

DECLARE @MyKeyIds NVARCHAR(40)
DECLARE @IDset NVARCHAR(40)
DECLARE @Pos INT
DECLARE @NextPos INT
DECLARE @Delimiter NVARCHAR(40)

SET @Delimiter = ','
Set @MyKeyIds='2232|33,4555|111,43343|65'+ @Delimiter
SET @Pos = charindex(@Delimiter, @MyKeyIds)

WHILE (@pos <> 0)
BEGIN
SET @IDset = substring(@MyKeyIds,1,@Pos - 1)
SELECT @IDset -- Show Results
SET @MyKeyIds = substring(@MyKeyIds,@Pos+1,len(@MyKeyIds))
SET @Pos = charindex(@Delimiter,@MyKeyIds)
END

关于sql - 拆分带有 2 个值的分隔字符串。SQL Server 2008。你能帮我吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3198767/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com