
获得徽章 0
- 闲来无聊,用SQL语句生存html
select
'zh-cn' as '@language',
'font-size:16px' as '@style',
(select '24' as '@size', 'default' as title for xml path('head'),type),
(select '24' as '@size', 'article content' as article for xml path('body'),type)
for xml path('html'),type
生成html
<html language="zh-cn" style="font-size:16px">
<head size="24">
<title>default</title>
</head>
<body size="24">
<article>article content</article>
</body>
</html>展开评论点赞