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

mysql + aggiornamento top n

UPDATE  table
SET     status = 1
WHERE   status = 2
ORDER BY id
LIMIT 400

Verificato in MySQL 5.2.0-falcon-alpha-community-nt-log , confermato funzionante.

Nel tuo caso è 0 in LIMIT 0, 400 non funziona.

Non puoi utilizzare il limite inferiore in UPDATE LIMIT di .