#12003/4/21 8:59:49
我想同时更新得到的几条数据,它们的ID号和新的值已经得到,但是在循环的时候不知道哪里出错了,可以帮我改一改吗?
id=2, 4, 5 ,6
num=12, 34, 56, 8
g_id=split(id,", ")
for i=0 to ubound(g_id)
g_num=split(num,", ")
for j=0 to ubound(g_num)
sql="update set table where g_num="&g_num(i)&" where id="&g_id(i)
set rs=cn.execute(sql)
next
next
难人一个……