UPDATE tableA a SET tid = (SELECT b.tid FROM tableB b WHERE a.no= b.no)
where a.id>0;
或者
update tableA , tableB set tableA.tid= tableB.tid
where tableA.no = tableB.no;
执行报错:
658 - Proxy ERROR: Join internal error: do not support subquery/sum in update list
其中:tablaA和tableB都是分表
相似问题