如何旋转这个表格?

huangapple go评论70阅读模式
英文:

How to pivot this table?

问题

在我的情况下,我有一个数据表,数据如下:

error_id|role_id|
--------+-------+
       6|1;4;5  |
       7|3;2    |

我如何将这个表更改为以下形式:

error_id|role_id|
--------+-------+
       6|1      |
       6|4      |
       6|5      |
       7|3      |
       7|2      |

如果你有任何想法,我将非常高兴。

英文:

In my case I have table with data are like that:

error_id|role_id|
--------+-------+
       6|1;4;5  |
       7|3;2    |

How can i change this table to this:

error_id|role_id|
--------+-------+
       6|1      |
       6|4      |
       6|5      |
       7|3      |
       7|2      |

I will be very glad if you have any idea

答案1

得分: 3

Select A.error_id, role_id = B.Value From YourTable A Cross Apply string_split(role_id,';') B

英文:

Small task using a CROSS APPLY and string_split()

Select A.error_id
      ,role_id = B.Value
  From YourTable A
  Cross Apply string_split(role_id,';') B

huangapple
  • 本文由 发表于 2023年5月11日 00:29:09
  • 转载请务必保留本文链接:https://go.coder-hub.com/76220717.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定