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

L'aggiornamento di MySQL richiede (troppo) tempo

Non è possibile che la query richieda molto tempo, se id è davvero la chiave primaria (a meno che tu non abbia molti e molti ID uguali a 2229230?). Eseguire i seguenti due sql e pubblicare i risultati:

show create table table1;
explain select * from table1 where id = 2229230;

Aggiornamento:tanto per essere completo, fai anche un

select count(*) from table1 where id = 2229230;