|
方法1:
- '//修改第一条
- rs.open sql,conn,1,3
- rs("companyBZ")=“要改成内容1”
- rs("companySJ")=“要改成内容2”
- rs.update
- rs.close
- set rs=nothing
- '//全表搜索并执行
- sql="update [表名称] set companyZD='' where companyZD='制定'"
- conn.execute(sql)
复制代码
方法2:
- Dim iCount
- iCount=1
- <%
- rs.open sql,conn,1,3
- do while not rs.eof
- if iCount=1 then ''//修改第一条记录
- rs("companyBZ")=“要改成内容1”
- rs("companySJ")=“要改成内容2”
- rs.update
- end if
-
- '//
- if rs("companyZD")="制定" then
- rs("companyZD")=""
- rs.update
- end if
-
- iCount=iCount+1
- rs.movenext
- loop
- rs.close
- set rs=nothing
- %>
复制代码 |
|