Sqlserver
 sql >> Database >  >> RDS >> Sqlserver

La query di trasposizione crea nodi (SQL Server 2008)

Se non vuoi il <Expr1> - allora non chiederlo!

Hai:

(SELECT ', ' + CAST(taxonomy_id AS varchar) AS Expr1

Quel AS Expr1 provoca il <Expr1> da aggiungere, quindi non avere quell'espressione lì.

Prova

SELECT 
    taxonomy_item_id, 
    SUBSTRING(
      (SELECT ', ' + CAST(taxonomy_id AS VARCHAR) 
       FROM dbo.taxonomy_item_tbl AS t2
       WHERE t1.taxonomy_item_id = taxonomy_item_id
       AND taxonomy_language_id = 2067
       ORDER BY taxonomy_item_id, taxonomy_id 
       FOR XML PATH('')
      ), 1, 1000) AS taxonomy_ids
FROM 
    dbo.taxonomy_item_tbl AS t1
WHERE 
    taxonomy_language_id = 2067
    AND taxonomy_item_id = 180555
GROUP BY 
    taxonomy_item_id