In MySQL 4.1 (I haven't installed v.5 yet), it doesn't seem to be possible for DATETIME columns, but it is possible for TIMESTAMP columns:
[tt]
datetimefield TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP
[/tt]
A common use of timestamp columns is to automatically record the time of the latest update of the record, but this can be prevented by omitting the "ON UPDATE" clause from the field's definition.