I've a query with insert records in a table.
I've 2 fields: DateTimeInserti on and DateTimeLastMod ification.
When I create the record, I must have those 2 fields set the same value.
Now I've this
Insert into article values(now(), now(),....)
but what appens if the time changes between the 2 now calls ?
It's there any way to be sure to set the same value ?
Thanks
Bob
PS: I've no access to MySQL NG.
I've 2 fields: DateTimeInserti on and DateTimeLastMod ification.
When I create the record, I must have those 2 fields set the same value.
Now I've this
Insert into article values(now(), now(),....)
but what appens if the time changes between the 2 now calls ?
It's there any way to be sure to set the same value ?
Thanks
Bob
PS: I've no access to MySQL NG.
Comment