Nếu bạn không muốn <Expr1>
- vậy thì đừng yêu cầu nó!
Bạn có:
(SELECT ', ' + CAST(taxonomy_id AS varchar) AS Expr1
AS Expr1
đó gây ra <Expr1>
được thêm vào - vì vậy đừng có biểu thức đó ở đó.
Hãy thử
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