- 注册时间
- 2011-3-22
- 最后登录
- 2013-6-27
- 在线时间
- 11644 小时
- 阅读权限
- 150
- 积分
- 62779
- 帖子
- 28923
- 精华
- 1
- UID
- 6
 
|
本帖最后由 那个谁 于 2011-5-26 17:00 编辑
今天一个客户有个需求说要在很多频道建附带发布。。当时软件规划没这个功能。一看几十个栏目,把我吓的。赶紧写个sql批量解决了。回头跟客户说这需要一周工作量。。O(∩_∩)O哈哈~
如果你有更好的方法请回帖。
不懂 就回帖问哦。。不解释了。- declare @SplitString varchar(8000),@Separator varchar(10)
- declare @channelid varchar(1000),@chanelName varchar(100),@atempId varchar(100),@path varchar(1000)
- set @SplitString='13621,13511,13625,13512,13617,13513,13618,13619,13623,13624,13616,13522,13523,13524,13525,13527,13528,13529,13530,13531,13533,13534,13535,13536,13630,13553,13551,13599,13600,13601,13602,13603,13605,13607,13608,13609,13610,13611,13612,13613,13614'
- set @Separator=','
- DECLARE @CurrentIndex int;
- DECLARE @NextIndex int;
- DECLARE @ReturnText nvarchar(max);
- SELECT @CurrentIndex=1;
- WHILE(@CurrentIndex<=len(@SplitString))
- BEGIN
- SELECT @NextIndex=charindex(@Separator,@SplitString,@CurrentIndex);
- IF(@NextIndex=0 OR @NextIndex IS NULL)
- SELECT @NextIndex=len(@SplitString)+1;
- SELECT @ReturnText=substring(@SplitString,@CurrentIndex,@NextIndex-@CurrentIndex);
- /*插入数据*/
- select @channelid=Channelid,@chanelName=ChannelName from channels where channelcode=@ReturnText
- print @channelid+' Name: '+@chanelName+' channelCode='+@ReturnText
- /*更新导读附带发布*/
- set @atempId='2063b3c7-a04d-48a5-80ce-3c1ec837adda'
- set @path='/web101/include/news_gxdd.html'
- INSERT INTO [IntertidCMS].[dbo].[ChannelAttachTemplate]
- ([ChannelAttID]
- ,[ChannelID]
- ,[TempID]
- ,[BuildFilePath]
- ,[Description]
- ,[CreateTime]
- ,[CreateUserID]
- ,[ModifyTime]
- ,[ModifyUserID])
- VALUES
- (newid(),
- @channelid,
- @atempId,
- @path,
- '',
- getDate(),
- 'b3ae3a2e-8023-485d-9d28-3066e0b72ae3',
- getDate(),
- 'b3ae3a2e-8023-485d-9d28-3066e0b72ae3')
-
- /*更新导读列表*/
- set @atempId='059bbc0e-2cff-4788-b866-aa63102e9e72'
- set @path='/web101/include/gxdd_index.html'
- INSERT INTO [IntertidCMS].[dbo].[ChannelAttachTemplate]
- ([ChannelAttID]
- ,[ChannelID]
- ,[TempID]
- ,[BuildFilePath]
- ,[Description]
- ,[CreateTime]
- ,[CreateUserID]
- ,[ModifyTime]
- ,[ModifyUserID])
- VALUES
- (newid(),
- @channelid,
- @atempId,
- @path,
- '',
- getDate(),
- 'b3ae3a2e-8023-485d-9d28-3066e0b72ae3',
- getDate(),
- 'b3ae3a2e-8023-485d-9d28-3066e0b72ae3')
-
-
- SELECT @CurrentIndex=@NextIndex+1; /*改变下标*/
- END
-
复制代码 |
-
1
查看全部评分
-
|