বিভিন্ন উত্তর একত্রিত:
মাইএসকিউএল 5.5 এ, DEFAULT CURRENT_TIMESTAMP
এবং কেবলমাত্র ON UPDATE CURRENT_TIMESTAMP
যোগ করা যায় না ।DATETIME
TIMESTAMP
নিয়মাবলী:
1) TIMESTAMP
সারণীতে প্রতি সর্বাধিক এক কলামটি স্বয়ংক্রিয়ভাবে (বা ম্যানুয়ালি [ আমার সংযোজন ]) বর্তমান তারিখ এবং সময়টিতে আরম্ভ বা আপডেট হতে পারে। (মাইএসকিউএল ডক্স)
সুতরাং শুধুমাত্র এক 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
, এটি কোনও অতিরিক্ত ক্লজ পেল কিনা!