问题:如何将表tablename中columns_name列所有字符“a”替换为“b”?
解决办法:在Access中执行以下SQL语句:
UPDATE tablename SET columns_name = REPLACE(columns_name,"a","b") ;