如何一次性替换Access数据库表中一行指定几列的数据

解决方案 »

  1.   

    可以写SQL语句。回复内容太短了!
      

  2.   

    写SQL语句
      

  3.   

    update table set where就是这个语句
      

  4.   

    update 表名 set 字段=变量 where 条件
      

  5.   

    我可能说的不是很清楚
    我的语句是这么写的
     update tableName set columnName=replace(columnName,'要替换的字符串','用来替换的字符串')
    可是提示 replace 没有定义,在网上也查找了在Access中确实无法使用Replace,,但找不到其他好的方法啊,请各位大侠 有没有别的方式来实现啊
      

  6.   

    update tableName set columnName=replace(columnName,'要替换的字符串','用来替换的字符串') update tableName set columnName= '用来替换的字符串' where columnName='要替换的字符串'