对ACCESS数据库里的两张表进行同步更新

2025-01-04 11:34:49
推荐回答(2个)
回答1:

rs.open"select * from news,article where news.id="&取值&" and article.id="&取值&"“,conn,3,3
if rs.eof then

response.write"没有找到NEWS.ID和ARTICLE.id相同的数据"
else
rs.("news.content")=CONTENT的取值
rs.("article.content")=CONTENT的取值
rs.update

不记得这样行不行,你可以试试。
conn.execute("update news,article set news.content="&content的取值&" and article.content="&content的取值&" news.id="&取值&" and article.id="&取值&"")

回答2:

可以考虑修改的时候,同时UPDATE两个表.