SQL Server2005数据项的分拆与合并
2010-07-16 15:44:19 来源:WEB开发网-- =============================================
-- Author: LzmTW
-- create date: 20080102
-- Description: 分拆字符串
-- @TableName: 数据所在的表的名称
-- @KeyColName: 分拆为子字符串所依据的键值所在的列
-- @SpliteColName: 包含要分拆的字符串所在的列
-- @Quote: 分隔子字符串
-- @where: 选择条件,不包含where
-- =============================================
create PROCEDURE [Helper].[SpliteValues]
@TableName nvarchar(100)
,@KeyColName nvarchar(20)
,@SpliteColName nvarchar(20)
,@Quote nvarchar(10) = N’,’
,@where nvarchar(max) = NULL
AS
BEGIN
SET NOcount ON;
DECLARE
@SQL nvarchar(max)
IF @where IS NULL
SET @SQL = N’
select
KeyCol, NewValue
FROM
(
select
KeyCol = @KeyColName
,SpliteCol = CONVERT(xml, N’’’’ + REPLACE(@SpliteColName, N’’@Quote’’, N’’’’) + N’’’’)
FROM @TableName
) a
’
ELSE
SET @SQL = N’
select
KeyCol, NewValue
FROM
(
select
KeyCol = @KeyColName
,SpliteCol = CONVERT(xml, N’’’’ + REPLACE(@SpliteColName, N’’@Quote’’, N’’’’) + N’’’’)
FROM @TableName
where @where
) a
’
SET @SQL = @SQL + N’
OUTER APPLY
(
select NewValue = N.v.value(N’’.’’, ’’nvarchar(max)’’)
FROM SpliteCol.nodes(N’’/root/v’’) N(v)
) b’
SET @SQL = REPLACE(@SQL, N’@TableName’, @TableName)
SET @SQL = REPLACE(@SQL, N’@KeyColName’, @KeyColName)
SET @SQL = REPLACE(@SQL, N’@SpliteColName’, @SpliteColName)
SET @SQL = REPLACE(@SQL, N’@Quote’, @Quote)
IF NOT @where IS NULL
SET @SQL = REPLACE(@SQL, N’@where’, @where)
exec sp_executesql @Sql
END
- ››sql server自动生成批量执行SQL脚本的批处理
- ››sql server 2008亿万数据性能优化
- ››SQL Server 2008清空数据库日志方法
- ››sqlserver安装和简单的使用
- ››SQL Sever 2008 R2 数据库管理
- ››SQL SERVER无法安装成功,sqlstp.log文件提示[未发...
- ››Sql Server中通过父记录查找出所有关联的子记录
- ››SqlServer触发器、存储过程和函数
- ››SQL Server 中的事务(含义,属性,管理)
- ››Sqlite数据库插入和读取图片数据
- ››Sql server 2005拒绝了对对象 'xx表' (数...
- ››Sql server 2005拒绝了对对象 'xx表' (数...
更多精彩
赞助商链接