vb中关于sql输入语句

2025-05-21 22:04:50
推荐回答(2个)
回答(1):

可以写update语句

没话说了!~
dim conn as new adodb.connection
conn.excute "update table set field="123" where 条件"

也可以用记录集

rs!field=123
rs.update

回答(2):

update 表名 set 字段="某一值" where 条件