Hi,
Das hier ist möglich und funktioneirt problemlos:
Folgendes ist nicht möglich:
...sondern nur:
Aber ich möchte via UPDATE nur ab der 500. Zeile bis zur 1000. Zeile Werte anpassen.
Wie ist das zu realisieren?
Vielen Dank im vorraus.
Gruß,
Christopher
Das hier ist möglich und funktioneirt problemlos:
PHP-Code:
SELECT * FROM table LIMIT 500, 1000
PHP-Code:
UPDATE table SET field = 'foo' LIMIT 500, 1000
PHP-Code:
UPDATE table SET field = 'foo' LIMIT 1000
Wie ist das zu realisieren?
Vielen Dank im vorraus.
Gruß,
Christopher
Kommentar