Ist es eigentlich bei MySql normal, daß das erste Datumsfeld eines Datensatzes immer auf das aktuelle Datum gesetzt wird, sobald man irgendwo in dem Datensatz eine Änderung macht? Ich habe in der Doku nichts dazu gefunden. Das ist ja nicht sonderlich SQL-üblich. Dummerweise ist mir das erst amn Projektende aufgefallen.
weedy.
Datum unter Mysql
http://dev.mysql.com/doc/mysql/en/Column_types.html
A timestamp. The range is '1970-01-01 00:00:00' to sometime in the year 2037. A TIMESTAMP column is useful for recording the date and time of an INSERT or UPDATE operation. The first TIMESTAMP column in a table is automatically set to the date and time of the most recent operation if you don't assign it a value yourself.
- weedy
- Beiträge: 585
- Registriert: 02.11.2002 21:47:49
- Lizenz eigener Beiträge: GNU General Public License
-
Kontaktdaten:
Danke, das habe ich überlesen.Abraxax hat geschrieben:http://dev.mysql.com/doc/mysql/en/Column_types.html
A timestamp. The range is '1970-01-01 00:00:00' to sometime in the year 2037. A TIMESTAMP column is useful for recording the date and time of an INSERT or UPDATE operation. The first TIMESTAMP column in a table is automatically set to the date and time of the most recent operation if you don't assign it a value yourself.
weedy.