如何用图中work表中的id字段在data表(data中有近万行数据)中找到对应的id把对应的a中的内容写入到work中的a中,补充完整个work
update work set a = (select a from data where work.id = data.id)