Notiz am Rande: Wer mit den Crontabs und deren Einrichtung noch nicht so ganz firm ist, kann sich mit dem Crontab Generator das Leben ein Stück weit vereinfachen. Aber besser wäre es natürlich sich die Syntax einfach einzuprägen. 😉
… was ich mir mal eben merken wollte.
Notiz am Rande: Wer mit den Crontabs und deren Einrichtung noch nicht so ganz firm ist, kann sich mit dem Crontab Generator das Leben ein Stück weit vereinfachen. Aber besser wäre es natürlich sich die Syntax einfach einzuprägen. 😉
Weil ichs gerade für ein TYPO3 Flow Projekt brauchte… 🙂 Notiz an mich:
Given the problem you have a new column postion and that column should be updated for all existing rows with ascending numbers. Furthermore these numbers should be generated by a special order. In order to achieve that you could do the following:
SET @pos := 0; UPDATE pages SET position = ( SELECT @pos := @pos + 1 ) ORDER BY updated_at DESC;
Quelle: How to update a MySQL column with ascending numbers – makandropedia
Free PHP tutorials by example
So wird es dort genannt. Für alle Neueinsteiger sicher einen Blick wert.
Quelle: Table of Contents – Hacking with PHP – Practical PHP