Jump to content
Larry Ullman's Book Forums

Table Creation With 2 Timestamps Chapter 1


Recommended Posts

I was unable to get the code to work to generate the MySQL table for Chapter 1.  I gathered that I was getting some kind of error due to two timestamps being created in the same table.  I was able to get the following table creation command to work, but wondered if anybody had further clarification of a better way to create the table.  Thanks!

 

CREATE TABLE tasks ( task_id INT UNSIGNED NOT NULL AUTO_INCREMENT, parent_id INT UNSIGNED NOT NULL DEFAULT 0, task VARCHAR(100) NOT NULL, date_added DATETIME NOT NULL, date_completed TIMESTAMP, PRIMARY KEY (task_id), INDEX parent (parent_id), INDEX added (date_added), INDEX completed (date_completed));

Link to comment
Share on other sites

This is probably due to the version of MySQL that you're using, as support for multiple timestamps with automatic behavior has changed over time. It's hard to know what the solution is without know the actual error, but using a combination of TIMESTAMP and DATETIME seems perfectly reasonable. 

Link to comment
Share on other sites

 Share

×
×
  • Create New...