SQL "For XML Path" - вложенные результаты - PullRequest
12 голосов
/ 20 января 2011

У меня есть эта структура таблицы.YearPart, MonthPart и DatePart содержат то, что они описывают ... EX: 2011, 1, 19 (соответственно)

DECLARE @agenda AS TABLE    (
  PID INT IDENTITY(1,1) PRIMARY KEY,
  YearPart int,
  MonthPart int,
  DayPart int,
  lib_title nvarchar(200),
  [filename] nvarchar(255),
  meta_value nvarchar(2000)
)

Используя этот пример данных:

INSERT INTO @agenda VALUES (2010, 12, 4, 'Test Record', '', '')
INSERT INTO @agenda VALUES (2011, 1, 3, 'Another Record', '', '')
INSERT INTO @agenda VALUES (2011, 1, 3, 'Fred Birthday', '', '')
INSERT INTO @agenda VALUES (2011, 1, 4, 'Work Day', '', '')
INSERT INTO @agenda VALUES (2011, 12, 6, '2nd Test Record', '', '')

То, что я хочу, этовывод XML, подобный следующему:

<root>
  <Year Year="2010">
    <Month Month="12">
      <Day Day="4">
        <Item RecordName="Test Record" RecordID="1" />
      </Day>
    </Month>
  </Year>
  <Year Year="2011">
    <Month Month="1">
      <Day Day="3">
        <Item RecordName="Another Record" RecordID="2" />
        <Item RecordName="Geoffrey Birthday" RecordID="3" />
      </Day> 
      <Day Day="4">
        <Item RecordName="Work Day" RecordID="4" />
      </Day>
    </Month>
    <Month Month="12">
      <Day Day="6">
        <Item RecordName="2nd Test Record" RecordID="5" />
      </Day>
    </Month>
  </Year>
</root>

До сих пор я не смог заставить вложение работать правильно.Я обычно заканчиваю группировку (например, я получаю несколько элементов Year = 2011, когда их должен быть только один).

Если это невозможно, я всегда могу создать XML наСайт .NET ...

1 Ответ

17 голосов
/ 20 января 2011

Это можно сделать.

select 
  a1.YearPart as '@Year',
  ( select MonthPart as '@Month',
      (select DayPart as '@Day',
         (select
            lib_title as '@RecordName', 
            PID as '@RecordID'
          from @agenda as a4
          where a4.DayPart = a3.DayPart and
                a4.MonthPart = a2.MonthPart and
                a4.YearPart = a1.YearPart
          for xml path('Item'), type         
         )
       from @agenda as a3
       where a3.YearPart = a1.YearPart and
             a3.MonthPart = a2.MonthPart
       group by a3.DayPart
       for xml path('Day'), type      
      )
    from @agenda as a2
    where a1.YearPart = a2.YearPart
    group by a2.MonthPart
    for xml path('Month'), type
  )  
from @agenda as a1
group by YearPart
for xml path('Year'), root
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...