如何把A表中的sendtime 字段的数据导到 B表中的 stime字段中 A表中的id字段 和B表中的id字段是对应的 问题点数:20、回复次数:1Top
update B set stime=A.sendtime from B left join A on B.id=A.idTop