vote up 0 vote down star

When am trying to set default date and default sysdate am getting following errors:

MySQL Query:

create table product_offer_type(object_id INT(19), snapshot_id INT(19), PRIMARY KEY(object_id,snapshot_id), enum_value VARCHAR(64) NOT NULL, external_name VARCHAR(64) NOT NULL, description VARCHAR(255), business_validation INT(1), valid_for_start_date_time DATE  DEFAULT '1900-01-10', valid_for_end_date_time DATE  DEFAULT '4712-01-01', mutation_date_time DATE SYSDATE, mutation_user VARCHAR(32) DEFAULT 'USER');

Error Message:

ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'SYSDATE, mutation_user VARCHAR(32) DEFAULT 'USER')' at line 1

Any pointer's would be highly appreciated.

flag

Any Suggestions ? – Rachel Oct 30 at 20:28
Why were other answer's removed ? – Rachel Oct 30 at 23:30

1 Answer

vote up 1 vote down check

If you're trying to track the last modification time of the row, I usually use something like

mutation_date_time timestamp default current_timestamp, on update current_timestamp

You might need slight modification if you really want Date and not timestamp.

link|flag
I am looking for date instead of timestamp, I will try modification of provided approach and update comment in couple of mins. – Rachel Oct 30 at 20:23
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'current_date, mutation_user VARCHAR(32) DEFAULT 'USER')' at line 1 – Rachel Oct 30 at 20:25
current_timestamp only works with the timestamp type of column , so you will have to convert your column type to timestamp to be able to automatically put in those times. – Sabeen Malik Oct 30 at 20:33
I dont't think current_date is defined - just use current_timestamp - it should get rounded correctly when assigned to a date field (I think - be sure to test it). – Keith Randall Oct 30 at 20:34
@Rachel .. current_date wont work .. there is no way to be able to set default for date columns dynamically , so ur stuck with timestamp columns – Sabeen Malik Oct 30 at 20:35
show 5 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.