ASP 相加后,循环输出 20
比如图中“1”中字数才2个,需要加下面的字段超过10个,最后"2"字段显示一条10BBAAAAAAAA11AABBBBBBBB.................dowhi...
比如图中“1”中字数才2个,需要加下面的字段超过10个,最后"2"字段显示一条10BBAAAAAAAA
11AABBBBBBBB
.................
do while not rs.eof
if len(rs("1"))<10 then
end if
rs.movenext
loop 展开
11AABBBBBBBB
.................
do while not rs.eof
if len(rs("1"))<10 then
end if
rs.movenext
loop 展开
1个回答
展开全部
dim tmp_str
tmp_str=""
do while not rs.eof
if len(tmp_str)>10 then'判断变量tmp_str字数是不是超过10
conn.execute("update 表 set 2='"tmp_str"' where id="&rs("id"))'如果超过了,就更新这条记录
tmp_str=""'同时,清空变量tmp_str
else'如果没超过10
if len(trim(rs("1")))<10 then'判断字段1的字数是不是超过10
tmp_str=tmp_str&trim(rs("1"))'如果没有,则更新变量tmp_str
else'否则
conn.execute("update 表 set 2='"tmp_str"' where id="&rs("id"))'说明此条记录的1字段超过10了,所以,更新2字段的这条记录
end if
rs.movenext
end if
loop
===============================
上面代码可实现你的效果,注意,这儿的表名,使用的是"表"请修改后使用
另:字段名不要使用数字,最好加个字符,不然可能会冲突。
tmp_str=""
do while not rs.eof
if len(tmp_str)>10 then'判断变量tmp_str字数是不是超过10
conn.execute("update 表 set 2='"tmp_str"' where id="&rs("id"))'如果超过了,就更新这条记录
tmp_str=""'同时,清空变量tmp_str
else'如果没超过10
if len(trim(rs("1")))<10 then'判断字段1的字数是不是超过10
tmp_str=tmp_str&trim(rs("1"))'如果没有,则更新变量tmp_str
else'否则
conn.execute("update 表 set 2='"tmp_str"' where id="&rs("id"))'说明此条记录的1字段超过10了,所以,更新2字段的这条记录
end if
rs.movenext
end if
loop
===============================
上面代码可实现你的效果,注意,这儿的表名,使用的是"表"请修改后使用
另:字段名不要使用数字,最好加个字符,不然可能会冲突。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询