码迷,mamicode.com
首页 > 数据库 > 详细

sql语句双重循环

时间:2015-02-11 22:05:38      阅读:319      评论:0      收藏:0      [点我收藏+]

标签:

技术分享


表 j_wenzhang_aps201503 中 shunxu 字段为null。现在 想根据 lanmu_id,qishiye两项,更新shunxu 字段。

1 、如果让shunxu 字段 自增,不存在重复,且lanmu_id 较小的,对应的 shunxu 也小;lanmu_id 相同,qishiye较小的,对应的shunxu也小。

declare @maxid int 
declare @minid int
declare @shunxu int
declare @maxqishiye int
declare @minqishiye int

select @maxid= max(lanmu_id) from j_wenzhang_aps201503 where shunxu is null 
select @minid= min(lanmu_id) from j_wenzhang_aps201503 where shunxu is null 
select @shunxu=0
if ((@maxid is not null) and (@minid is not null))
begin
while (@maxid>=@minid) 
begin
select @maxqishiye=max(qishiye) from j_wenzhang_aps201503 where shunxu is null and lanmu_id=@minid
select @minqishiye=min(qishiye) from j_wenzhang_aps201503 where shunxu is null and lanmu_id=@minid

if ((@maxqishiye is not null) and (@minqishiye is not null))
begin
while (@maxqishiye>=@minqishiye) 
begin

select @shunxu=@shunxu+1
update j_wenzhang_aps201503  set shunxu=@shunxu where lanmu_id=@minid and qishiye=@minqishiye and shunxu 

is null

select @minqishiye=min(qishiye) from j_wenzhang_aps201503 where shunxu is null and lanmu_id=@minid
end
end
select @minid=min(lanmu_id) from j_wenzhang_aps201503 where shunxu is null 
end
end
go


执行后结果:

技术分享


2、如果按照栏目 让shunxu 字段 自增,且lanmu_id 较小的,对应的 shunxu 也小;lanmu_id 相同,qishiye较小的,对应的shunxu也小。

即(每个相同lanm_id里,shunxu 都从1 开始增加)


declare @maxid int 
declare @minid int
declare @shunxu int
declare @maxqishiye int
declare @minqishiye int

select @maxid= max(lanmu_id) from j_wenzhang_aps201503 where shunxu is null 
select @minid= min(lanmu_id) from j_wenzhang_aps201503 where shunxu is null 

if ((@maxid is not null) and (@minid is not null))
begin
while (@maxid>=@minid) 
begin
select @maxqishiye=max(qishiye) from j_wenzhang_aps201503 where shunxu is null and lanmu_id=@minid
select @minqishiye=min(qishiye) from j_wenzhang_aps201503 where shunxu is null and lanmu_id=@minid

select @shunxu=0
if ((@maxqishiye is not null) and (@minqishiye is not null))
begin
while (@maxqishiye>=@minqishiye) 
begin

select @shunxu=@shunxu+1
update j_wenzhang_aps201503  set shunxu=@shunxu where lanmu_id=@minid and qishiye=@minqishiye and shunxu is null

select @minqishiye=min(qishiye) from j_wenzhang_aps201503 where shunxu is null and lanmu_id=@minid
end
end
select @minid=min(lanmu_id) from j_wenzhang_aps201503 where shunxu is null 
end
end
go




执行后结果:

技术分享






sql语句双重循环

标签:

原文地址:http://blog.csdn.net/csdn_xhl868/article/details/43736397

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!