我写了以下 SQL 查询:
SELECT SUBSTRING(
(
SELECT ', <br />'+
[tblSectors].[title]
FROM tblSectors WHERE 1=1 AND sector_id IN
(SELECT sector_id FROM tRelBusinessSector WHERE business_id = 2517)
FOR XML PATH('')),2,200000) AS CSV
它显示以下输出: <br />Personal Injury, <br />Financial products/services
它不显示<br/>
在输出中??为什么 ??