SQLServer2008テーブルに対して次のxqueryがあります。
declare @tableName sysname = 'tableName'
declare @colNames xml = (select COLUMN_NAME from INFORMATION_SCHEMA.columns where TABLE_NAME = @tableName for xml path(''), elements)
select @colNames.query('<html><body>
<table>
<tr>
{
for $c in /COLUMN_NAME
return data($c)[1]
}
</tr>
</table>
</body></html>
')
ただし、次のxmlを返します。
<html>
<body>
<table>
<tr>col1col2col3col4col5</tr>
</table>
</body>
</html>
そして期待される結果は
<html>
<body>
<table>
<tr><th>col1</th><th>col2</th><th>col3</th><th>col4</th><th>col5</th></tr>
</table>
</body>
</html>
に変更return data($c)[1]
してみましたconcat("<th>", data($c)[1], "</th>")
。しかし、<
とはとに>
逃げましたか?<
>