Mysql
 sql >> Base de données >  >> RDS >> Mysql

Mettre à jour une table avec count() à partir d'une autre table

Vous pouvez utiliser une requête pour cela comme ceci

UPDATE table_a a
SET a.alcohol_spirits = a.alcohol_spirits + 
(SELECT
     count(table_b.itemId)
 FROM table_b
 WHERE headAlias = 'alcohol-spirits' 
 AND country IN('US,SE')
 AND FIND_IN_SET(a.country, table_b.headdestinations)
)