我的表名为users,在列fullname中,某些值看起来像’Adam Noel’.我想删除空格,以便新值为’AdamNoel’
我喜欢30k行
update users set fullname = replace(fullname,' ',''); commit;