philzhou

导航

2011年9月29日 #

转 SQL Server FOR XML PATH 语句的应用

摘要: 原文 SQL Server FOR XML PATH 语句的应用在SQL Server中利用 FOR XML PATH 语句能够把查询的数据生成XML数据,下面是它的一些应用示例。view sourceprint?1DECLARE @TempTable table(UserID int , UserName nvarchar(50));2insert into @TempTable (UserID,UserName) values (1,'a')3insert into @TempTable (UserID,UserName) values (2,'b')45s 阅读全文

posted @ 2011-09-29 10:17 philzhou 阅读(123) 评论(0) 推荐(0) 编辑

Sql Server为数值变量添加删除前导后缀(翻译)

摘要: Execute the following Microsoft SQL Server T-SQL example scripts to demonstrate SQL padding of numbers and strings with leading and trailing zeros as well as with other designated characters, and techniques for removing (trim) leading zeros. 使用以下sql server t-sql 脚本添加删除前导,后缀字符。-- Add/pa... 阅读全文

posted @ 2011-09-29 10:11 philzhou 阅读(979) 评论(0) 推荐(0) 编辑