I have a mySQL database table with a column field datatype of datetime that
I set up in the original create table statement like this:
create table nnet_usermetada ta (
....
nnet_record_ent ered datetime default 'now()'
)
However, upon execution, each time a record is entered into
nnet_usermetada ta the results are:
00-00-0000 00:00:00
Is there a way I can always ensure that the current date and time are always
entered into the datetime field?
Phil
I set up in the original create table statement like this:
create table nnet_usermetada ta (
....
nnet_record_ent ered datetime default 'now()'
)
However, upon execution, each time a record is entered into
nnet_usermetada ta the results are:
00-00-0000 00:00:00
Is there a way I can always ensure that the current date and time are always
entered into the datetime field?
Phil
Comment