विभिन्न उत्तरों का संयोजन:
MySQL 5.5 में, DEFAULT CURRENT_TIMESTAMP
और केवल पर ही ON UPDATE CURRENT_TIMESTAMP
नहीं जोड़ा जा सकता है ।DATETIME
TIMESTAMP
नियम:
1) TIMESTAMP
प्रति तालिका में अधिकतम एक कॉलम स्वचालित रूप से (या मैन्युअल रूप से [ मेरा जोड़] हो सकता है ]) वर्तमान तिथि और समय के अनुसार प्रारंभ या अद्यतन किया जा सकता है। (MySQL डॉक्स)।
तो केवल एक में या TIMESTAMP
हो सकता CURRENT_TIMESTAMP
हैDEFAULT
ON UPDATE
खंड
2) NOT NULL
TIMESTAMP
बिना किसी स्पष्ट DEFAULT
मूल्य के पहले कॉलम को स्पष्ट created_date timestamp default '0000-00-00 00:00:00'
रूप से एक दिया जाएगा DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP
और इसलिए बाद के TIMESTAMP
कॉलमों CURRENT_TIMESTAMP
को DEFAULT
या ON UPDATE
खंड पर नहीं दिया जा सकता है
CREATE TABLE `address` (
`id` int(9) NOT NULL AUTO_INCREMENT,
`village` int(11) DEFAULT NULL,
`created_date` timestamp default '0000-00-00 00:00:00',
-- Since explicit DEFAULT value that is not CURRENT_TIMESTAMP is assigned for a NOT NULL column,
-- implicit DEFAULT CURRENT_TIMESTAMP is avoided.
-- So it allows us to set ON UPDATE CURRENT_TIMESTAMP on 'updated_date' column.
-- How does setting DEFAULT to '0000-00-00 00:00:00' instead of CURRENT_TIMESTAMP help?
-- It is just a temporary value.
-- On INSERT of explicit NULL into the column inserts current timestamp.
-- `created_date` timestamp not null default '0000-00-00 00:00:00', // same as above
-- `created_date` timestamp null default '0000-00-00 00:00:00',
-- inserting 'null' explicitly in INSERT statement inserts null (Ignoring the column inserts the default value)!
-- Remember we need current timestamp on insert of 'null'. So this won't work.
-- `created_date` timestamp null , // always inserts null. Equally useless as above.
-- `created_date` timestamp default 0, // alternative to '0000-00-00 00:00:00'
-- `created_date` timestamp,
-- first 'not null' timestamp column without 'default' value.
-- So implicitly adds DEFAULT CURRENT_TIMESTAMP and ON UPDATE CURRENT_TIMESTAMP.
-- Hence cannot add 'ON UPDATE CURRENT_TIMESTAMP' on 'updated_date' column.
`updated_date` timestamp null on update current_timestamp,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=132 DEFAULT CHARSET=utf8;
INSERT INTO address (village,created_date) VALUES (100,null);
mysql> select * from address;
+-----+---------+---------------------+--------------+
| id | village | created_date | updated_date |
+-----+---------+---------------------+--------------+
| 132 | 100 | 2017-02-18 04:04:00 | NULL |
+-----+---------+---------------------+--------------+
1 row in set (0.00 sec)
UPDATE address SET village=101 WHERE village=100;
mysql> select * from address;
+-----+---------+---------------------+---------------------+
| id | village | created_date | updated_date |
+-----+---------+---------------------+---------------------+
| 132 | 101 | 2017-02-18 04:04:00 | 2017-02-18 04:06:14 |
+-----+---------+---------------------+---------------------+
1 row in set (0.00 sec)
अन्य विकल्प (लेकिन updated_date
पहला कॉलम है):
CREATE TABLE `address` (
`id` int(9) NOT NULL AUTO_INCREMENT,
`village` int(11) DEFAULT NULL,
`updated_date` timestamp null on update current_timestamp,
`created_date` timestamp not null ,
-- implicit default is '0000-00-00 00:00:00' from 2nd timestamp onwards
-- `created_date` timestamp not null default '0000-00-00 00:00:00'
-- `created_date` timestamp
-- `created_date` timestamp default '0000-00-00 00:00:00'
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=132 DEFAULT CHARSET=utf8;
CURRENT_TIMESTAMP
मेंDEFAULT
याON UPDATE
वहाँ के साथ एक स्तंभ है एक बार खंडTIMESTAMP
डेटा प्रकार, कोई फर्क नहीं पड़ता अगर यह एक अतिरिक्त खंड मिल गया है!