Mysql
 sql >> Base de Dados >  >> RDS >> Mysql

MySQL:conte registros de uma tabela e atualize outra


Use uma subconsulta:
UPDATE nations 
   SET count = (
       SELECT COUNT(id) 
         FROM poets 
        WHERE poets.nation = nations.id 
        GROUP BY id
       );