gpt4 book ai didi

sql - 从 VARCHAR 中提取数字

转载 作者:行者123 更新时间:2023-12-03 02:27:58 25 4
gpt4 key购买 nike

我正在尝试从中提取数字的表中有一个 VARCHAR(255) 类型的 [Comment] 列。这些数字始终是 12 位数字,但通常不在同一位置。其中一些还会有多个 12 位数字,这很好,但我只需要第一个。

我尝试过使用 PATINDEX('%[0-9]%',[Comment]),但我不知道如何设置 12 位数字的要求。

我正在使用的数据示例如下:

Combined 4 items for $73.05 with same claim no. 123456789012 as is exceeding financial limits
Consolidated remaining amount of claim numbers, 123456789013, 123456789014, 123456789015, 123456789016 due to financial limits

最佳答案

您可以连续使用 12 个 [0-9]:

PATINDEX('%[0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9‌​][0-9][0-9]%',[Comme‌​nt])

关于sql - 从 VARCHAR 中提取数字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40388840/

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