考虑我的 Select 查询,我正在使用
Select Convert(xml, '<b>Grand Total</b>'),
Convert(xml,'<b>'+Convert(varchar,Sum(amt))+'</b>')as Amt
From myTable
For xml path(''),type //with and without results are same
此外,我还有更多来自这种形式的局部变量的 HTML 标记:
Set @loc_var = '<Table><TR><TD>This is some dummy Text</TD></TR></TABLE>'
等等。上面的结果集最终被嵌入到上面的 HTML 字符串中的某个地方。但是在嵌入最终结果包含如下 Select 语句结果之后,其余的都很好,没有问题。请帮忙。
输出:
<Table><TR><TD>This is some dummy Text</TD></TR></TABLE> <b>Grand Total</b>
期望的输出
<Table><TR><TD>This is some dummy Text</TD></TR></TABLE><b>Grand Total</b>