我需要帮助使用 TSQL 解析 HL7 字符串
我在表格中有一个列,看起来像这样
Name |
---|
WALKER^JAMES^K^^ |
ANDERSON^MICHAEL^R^^ |
HUFF^CHRIS^^^ |
WALKER^JAMES^K^^ |
SWEARINGEN^TOMMY^L^^ |
SMITH^JOHN^ JACCOB^^ |
我需要编写一个如下所示的查询
Name | FirstName | LastName | MiddleName |
---|---|---|---|
WALKER^JAMES^K^^ | JAMES | WALKER | K |
ANDERSON^MICHAEL^R^^ | MICHAEL | ANDERSON | R |
HUFF^CHRIS^^^ | CHRIS | HUFF | |
BUTLER^STEWART^M^^ | BUTLER | M | SWEARINGEN |
^TOMMY^L^^ | TOMMY | SWEARINGEN | L |
SMITH^JOHN^JACCOB^^ | 约翰 | STEWART | 史密斯JACCOB |
I需要帮助生成 LastName 列。
这是我到目前为止所尝试过的
SUBSTRING
(
--SEARCH THE NAME COLUMN
Name,
--Starting after the first '^'
CHARINDEX('^', Name) + 1 ),
--Index of second ^ minus the index of the first ^
(CHARINDEX('^', PatientName, CHARINDEX('^', PatientName) +1)) - (CHARINDEX('^', PatientName))
)
这会产生:
传递给 LEFT 或 SUBSTRING 函数的长度参数无效。
我知道这可行,因为如果我将减号更改为加号,它就会按预期执行。 它产生正确的整数。
我哪里错了?有更好的方法吗?
I have a column in a table that looks like this
Name |
---|
WALKER^JAMES^K^^ |
ANDERSON^MICHAEL^R^^ |
HUFF^CHRIS^^^ |
WALKER^JAMES^K^^ |
SWEARINGEN^TOMMY^L^^ |
SMITH^JOHN^JACCOB^^ |
I need to write a query that looks like this
Name | FirstName | LastName | MiddleName |
---|---|---|---|
WALKER^JAMES^K^^ | JAMES | WALKER | K |
ANDERSON^MICHAEL^R^^ | MICHAEL | ANDERSON | R |
HUFF^CHRIS^^^ | CHRIS | HUFF | |
BUTLER^STEWART^M^^ | STEWART | BUTLER | M |
SWEARINGEN^TOMMY^L^^ | TOMMY | SWEARINGEN | L |
SMITH^JOHN^JACCOB^^ | JOHN | SMITH | JACCOB |
I need help generating the LastName column.
This is what I've tried so far
SUBSTRING
(
--SEARCH THE NAME COLUMN
Name,
--Starting after the first '^'
CHARINDEX('^', Name) + 1 ),
--Index of second ^ minus the index of the first ^
(CHARINDEX('^', PatientName, CHARINDEX('^', PatientName) +1)) - (CHARINDEX('^', PatientName))
)
This produces:
Invalid length parameter passed to the LEFT or SUBSTRING function.
I know this can work because if I change the minus sign to a plus sign it performs as expected.
It produces the right integer.
Where am I going wrong? Is there a better way to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您使用的是最新的 SQL Server 版本 2016 13.x 或更高版本,则可以最大限度地利用
string_split
函数与ordinal
(位置)。If you are using the latest SQL Server versions 2016 13.x or higher, you can maximize the use of
string_split
function withordinal
(position).我推荐 SUBSTRING(),因为它的性能最佳。 SUBSTRING 的挑战是很难跟踪嵌套的 CHARDINDEX() 调用,因此最好将计算分解为多个部分。我使用 CROSS APPLY 为找到的每个“^”添加别名,并从那里开始搜索下一个。还允许执行 NULLIF() = 0,因此如果找不到“^”,它只会返回 NULL,而不是
使用 SUBSTRING() 和 CROSS APPLY 错误输出 Parse Delimited String
I recommend SUBSTRING() as it will perform the best. The challenge with SUBSTRING is it's hard to account to keep track of the nested CHARDINDEX() calls so it's better to break the calculation into pieces. I use CROSS APPLY to alias each "^" found and start from there to search for the next. Also allows to do NULLIF() = 0, so if it can't find the "^", it just returns a NULL instead of erroring out
Parse Delimited String using SUBSTRING() and CROSS APPLY