Mysql
 sql >> Database >  >> RDS >> Mysql

MYSQL:come aggiornare un campo per tutti gli elementi risultanti dall'istruzione group by select

Vuoi dire che vuoi aggiornare la tabella in cui field1, field2 e field3 sono nel set restituito dalla tua istruzione select?

per esempio.

update table, 
     ( select field1, field2, field3 
       FROM table WHERE field1= 5  AND field_flag =1 
       GROUP BY field1, field2, field3 limit 1000 ) temp
set table.field_flag = 99 
where table.field1=temp.field1 and table.field2=temp.field2 and table.field3 = temp.field3

Tieni presente che l'aggiornamento potrebbe aggiornare molte più di 1000 righe.

Potrebbe essere utilizzata anche una tabella temporanea:

create temporary table temptab as
select field1, field2, field3 
FROM table WHERE field1= 5  AND field_flag =1 
GROUP BY field1, field2, field3 limit 1000 

 update table, 
        temptab temp
 set table.field_flag = 99 
 where table.field1=temp.field1 and table.field2=temp.field2 and table.field3 = temp.field3

Questo ha il vantaggio che temptab può essere utilizzato in seguito e anche che è possibile aggiungere indici per velocizzare l'aggiornamento:

create index on temptab (field1, field2, field3);