gpt4 book ai didi

html - 使用 SQL FOR XML 创建 HTML 表

转载 作者:技术小花猫 更新时间:2023-10-29 11:53:15 25 4
gpt4 key购买 nike

我正在 SQL Server 2008 R2 中使用 FOR XML 语句创建 HL7 护理连续性文档 (CCD)。

我已经用这种方法做了很多,但这是我第一次必须在 HTML 表格中表示部分数据,这给我带来了麻烦。

所以,我在表格中有以下信息:

  Problem  |   Onset    | Status
---------------------------------
Ulcer | 01/01/2008 | Active
Edema | 02/02/2005 | Active

我正在尝试呈现以下内容

<tr>
<th>Problem</th>
<th>Onset</th>
<th>Status</th>
</tr>
<tr>
<td>Ulcer</td>
<td>01/01/2008</td>
<td>Active</td>
</tr>
<tr>
<td>Edema</td>
<td>02/02/2005</td>
<td>Active</td>
</tr>

我正在使用这个查询:

SELECT    p.ProblemType AS "td"
, p.Onset AS "td"
, p.DiagnosisStatus AS "td"
FROM tblProblemList p
WHERE p.PatientUnitNumber = @PatientUnitNumber
FOR XML PATH('tr')

我不断收到以下信息:

<tr>
<td>Ulcer2008-01-01Active</td>
</tr>
<tr>
<td>Edema2005-02-02Active</td>
</tr>

有人有什么建议吗?

最佳答案

select 
(select p.ProblemType as 'td' for xml path(''), type),
(select p.Onset as 'td' for xml path(''), type),
(select p.DiagnosisStatus as 'td' for xml path(''), type)
from tblProblemList p
where p.PatientUnitNumber = @PatientUnitNumber
for xml path('tr')

要同时添加 header ,您可以使用union all

select 
(select 'Problem' as th for xml path(''), type),
(select 'Onset' as th for xml path(''), type),
(select 'Status' as th for xml path(''), type)
union all
select
(select p.ProblemType as 'td' for xml path(''), type),
(select p.Onset as 'td' for xml path(''), type),
(select p.DiagnosisStatus as 'td' for xml path(''), type)
from tblProblemList p
where p.PatientUnitNumber = @PatientUnitNumber
for xml path('tr')

关于html - 使用 SQL FOR XML 创建 HTML 表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7086393/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com