如何一次性替换Access数据库表中一行指定几列的数据可以写SQL语句。回复内容太短了! 把你指定几列的数据作为判断条件,循环更新 update table set where 写SQL语句。。。 update table set where就是这个语句 看下书就会了
update 表名 set 字段=变量 where 条件 我可能说的不是很清楚 我的语句是这么写的 update tableName set columnName=replace(columnName,'要替换的字符串','用来替换的字符串') 可是提示 replace 没有定义,在网上也查找了在Access中确实无法使用Replace,,但找不到其他好的方法啊,请各位大侠 有没有别的方式来实现啊 update tableName set columnName=replace(columnName,'要替换的字符串','用来替换的字符串')
update tableName set columnName= '用来替换的字符串' where columnName='要替换的字符串'