MySQL更新替换语法怎么写才对呢

hellsam · · 1003 次点击
update table a ,(select id from user where name = 'myname' limit 1) b set a.name=replace(a.name,'aa',b.id) where a.id=b.id
#6
更多评论
为什么不这样写呢? update table set name='aa' where name ='bb'
#1