| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 347 人关注过本帖
标题:[求助]这些代码能用一段代码来写吗?
只看楼主 加入收藏
zmp
Rank: 1
等 级:新手上路
帖 子:125
专家分:0
注 册:2007-6-30
收藏
 问题点数:0 回复次数:2 
[求助]这些代码能用一段代码来写吗?
<%
set conn=server.createobject("adodb.connection")
conn.open "driver={microsoft access driver (*.mdb)};dbq="&server.MapPath("data/data.mdb")
'7月份
exec="select bb as mq,sum(myqty) as ql,month(mydate) as rl from zmp where month(mydate)=7 group by bb,month(mydate)"
set rs=server.CreateObject("adodb.recordset")
rs.open exec,conn,1,3
do while not rs.eof
stsql="update kc set 7月='"&rs("ql") & "' where kc.bb='"&rs("mq") & "'"
conn.execute stsql
rs.movenext
loop
'8月份
exec="select bb as mq,sum(myqty) as ql,month(mydate) as rl from zmp where month(mydate)=8 group by bb,month(mydate)"
set rs=server.CreateObject("adodb.recordset")
rs.open exec,conn,1,3
do while not rs.eof
stsql="update kc set 8月='"&rs("ql") & "' where kc.bb='"&rs("mq") & "'"
conn.execute stsql
rs.movenext
loop
'9月份
exec="select bb as mq,sum(myqty) as ql,month(mydate) as rl from zmp where month(mydate)=9 group by bb,month(mydate)"
set rs=server.CreateObject("adodb.recordset")
rs.open exec,conn,1,3
do while not rs.eof
stsql="update kc set 9月='"&rs("ql") & "' where kc.bb='"&rs("mq") & "'"
conn.execute stsql
rs.movenext
loop
'10月份
exec="select bb as mq,sum(myqty) as ql,month(mydate) as rl from zmp where month(mydate)=10 group by bb,month(mydate)"
set rs=server.CreateObject("adodb.recordset")
rs.open exec,conn,1,3
do while not rs.eof
stsql="update kc set 10月='"&rs("ql") & "' where kc.bb='"&rs("mq") & "'"
conn.execute stsql
rs.movenext
loop
conn.close
set conn=nothing
%>
这些代码能用一段代码来写吗?
搜索更多相关主题的帖子: 代码 
2007-07-19 12:30
谁与争疯
Rank: 16Rank: 16Rank: 16Rank: 16
来 自:海南省
等 级:版主
威 望:191
帖 子:15071
专家分:17513
注 册:2007-4-22
收藏
得分:0 
能用一段来写.

论坛是我家灌水靠大家
2007-07-19 12:32
zmp
Rank: 1
等 级:新手上路
帖 子:125
专家分:0
注 册:2007-6-30
收藏
得分:0 
回复:(谁与争疯)能用一段来写.
怎样写呀!
你能把代码写出来分享下吗?
2007-07-19 13:00
快速回复:[求助]这些代码能用一段代码来写吗?
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.015902 second(s), 7 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved