Sqlserver
 sql >> Baza danych >  >> RDS >> Sqlserver

Użycie atrybutu więcej niż raz w zapytaniu FOR XML Path T-SQL z tą samą nazwą elementu

Metody skrótów mogą nie wystarczyć. AUTO i PATH nie lubią wielu elementów o tej samej nazwie. Wygląda na to, że musiałbyś użyć DLA WYJAŚNIENIA XML polecenie.

Działa, ale jest kłopotliwe.

Próbka:

--Generate Sample Data
--FOR XML EXPLICIT requires two meta fields: Tag and Parent
--Tag is the ID of the current element.
--Parent is the ID of the parent element, or NULL for root element.

DECLARE @DataTable as table
   (Tag int NOT NULL
   , Parent int
   , TaxonomyValue nvarchar(max)
   , CategoryValue nvarchar(max)
   , CategoryLevel int)

--Fill with sample data: Category Element (2), under Taxonomy(1), with no Taxonomy value.
INSERT INTO @DataTable
VALUES (2, 1, NULL, 1, 'Clothing')
     , (2, 1, NULL, 2, 'Jeans')

--First part of query: Define the XML structure
SELECT
   1 as Tag  --root element
   , NULL as Parent
   , NULL as [Taxonomy!1]       --Assign Taxonomy Element to the first element, aka root.
   , NULL as [Category!2]       --Assign Category Element as a child to Taxonomy.
   , NULL as [Category!2!Level] --Give Category an Attribute 'Level'

--The actual data to fill the XML
UNION
SELECT
   Data.Tag
   , Data.Parent
   , Data.TaxonomyValue
   , Data.CategoryValue
   , Data.CategoryLevel
FROM
   @DataTable as Data
FOR XML EXPLICIT

Generuje XML

<Taxonomy>
  <Category Level="1">Clothing</Category>
  <Category Level="2">Jeans</Category>
</Taxonomy>

Edycja:Miał odwrócone kolumny. Nigdy więcej poziomu dżinsów.



  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Obsługa dialektu SQL 2008 dla NHibernate

  2. Zatrzaski SQL Server — inne zatrzaski, o których warto wiedzieć

  3. Zamiana wartości null na zero

  4. SQL Server podzielony przecinkiem

  5. dziwne zachowanie SQL Server podczas sumowania wartości węzłów w XML