语法问题SQL Server。 结合Pivot,XML解析和JOIN

我在SQL表中有以下形式的列(varchar400):

Info
User ID=1123456,Item ID=6685642

此列用于存储我们数据库中的产品属性,因此虽然我只关注用户ID和项目ID,但可能存在此处存储的多余信息,例如:

   Info
   Irrelevant ID=666,User ID=123124,AnotherIrrelevantID=1232342,Item ID=1213124

所以我有一个SQL查询如下:

-- convert info column to xml type
; with cte as --imports a library of common table expressions
(
    select TOP 1000 cast('<info ' + REPLACE(REPLACE(REPLACE(REPLACE(OtherInformation,' ', ''),',', '" '),'=','="'),'.','') + '" />' as XML) info, --puts the OtherInformation column into well formed XML
    ROW_NUMBER() over (order by TableID) id --returns all rows??
    FROM Table
    WHERE TableEnum=51
) 
SELECT DISTINCT UserID from --selects unique user ids from our returned xml
(
       select T.N.value('local-name(.)', 'varchar(max)') as Name, --selects all attributes returned in varchar(max) format as Name
       T.N.value('.', 'varchar(max)') as Value, id --Selects all values returned
       from cte cross apply info.nodes('//@*') as T(N) -- from the XML we created above
) v
pivot (max(value) for Name in ([UserID])) p --creates a pivot table on Name, separating all of the attributes into different columns

现在,这正确地返回给我一个列,如下所示:

UserID
1
2
3
4
5

现在我有另一个表格Table2 ,它包含用户所做的订单。 我想使用UserID作为对此表的引用,因此,不是仅返回UserID,而是返回此表上的行,其中上面返回的UserID等于此表中的行。

所以,而不是上面,我们得到:

UserID    Table2Col   Table2Col2
2              Info        Info
5              Info        Info
5              Info2       Info2
5              Info3       Info3

2个问题 - 如何执行JOIN或执行子查询来组合这两个表,我无法弄清楚如何以正确的语法来完成此操作。 其次,我在上面的查询中写了一些评论,说明我是如何理解查询工作的。 他们是否正确?


我很可能错过了你的问题,但是你似乎可以通过以下方式扩展现有的查询。 这仍然使用CTE和PIVOT,但是PIVOT查询放置在允许您加入到table2的子查询中:

; with cte as --imports a library of common table expressions
(
    select TOP 1000 cast('<info ' + REPLACE(REPLACE(REPLACE(REPLACE(OtherInformation,' ', ''),',', '" '),'=','="'),'.','') + '" />' as XML) info 
      , ROW_NUMBER() over (order by TableID)) id 
    FROM yourtable
) 
select d.userid, t2.col1, t2.col2
from
(
  SELECT DISTINCT UserID 
  from 
  (
    select T.N.value('local-name(.)', 'varchar(max)') as Name, 
      T.N.value('.', 'varchar(max)') as Value, id 
    from cte 
    cross apply info.nodes('//@*') as T(N) 
  ) v
  pivot 
  (
    max(value) 
    for Name in ([UserID])
  ) p 
) d
inner join table2 t2
  on d.userid = t2.userid;

使用Demo查看SQL小提琴

链接地址: http://www.djcxy.com/p/72277.html

上一篇: Syntax issue SQL Server. Combining Pivot, XML parse and JOIN

下一篇: V8 Engine Voodoo: Why is this faster / slower?