mysql query - insert data unix_timestamp ( now ( ) ) issue

Viewed 31659

I have an INT (11) column for storing the current timestamp in seconds. The query looks like:

INSERT INTO `abc` (id, timestamp) VALUES ('', UNIX_TIMESTAMP ( NOW () ) )

I don't know why, but the date isn't changed. It doesn't matter when I send the query, the column value isn't changed. It has 1342692014 value, but I don't know why.

Is there any option or other function for timestamps? I must store dates in seconds.

1 Answers
Related