0

我有表 tb1(col1, col2),col2 是 varchar(50)。例如,

col1    col2
item1   abc
item2   a
item3   ed

我想编写一个存储过程来解析 col2 并创建一个临时表,如下所示:

col1    col2
item1   a
item1   b
item1   c
item2   a
item3   e
item3   d

有人可以帮我吗?

4

2 回答 2

2

如果你知道字符串的最大长度,最简单的方法是做一个简单的联合:

select col1, substring(col2, 1, 1) as col2
from t
where len(col2) >= 1 union all
select col1, substring(col2, 2, 1) as col2
from t
where len(col2) >= 2 union all
select col1, substring(col2, 3, 1) as col2
from t
where len(col2) >= 3 union all

如果长度永远不会太长,您可以执行以下操作来简化查询:

select col1, substring(col2, nums.seqnum) as col2
from t cross join
     (select row_number() over (order by (select NULL)) as seqnum
      from Infromation_Schema.columns
     ) nums
where len(col2) <= nums.seqnum

或者,您可以在 T-SQL 中的 while 循环中执行此操作。

于 2012-09-11T17:50:55.883 回答
1

试试这个:

您可以使用单个查询来获取它

SELECT COL1,SUBSTRING(COL2,NUMBER+1,1) AS COL2
FROM   YOURTABLE T
JOIN   MASTER..SPT_VALUES M
ON     LEN(COL2)>NUMBER
WHERE  M.TYPE='P'
于 2012-09-11T16:29:55.073 回答