MySQL Add time column (for record creation time and modified time)

Source: Internet
Author: User
Tags add time

When MySQL builds a table, you need to add two time columns to record the creation and modification time of the current record, respectively. Good. The following is the build table statement: [SQL]View PlainCopy
  1. DROP TABLE IF EXISTS ' mytesttable ';
  2. CREATE TABLE ' mytesttable ' (
  3. ' ID ' int (one) is not NULL,
  4. 'name ' varchar (255) DEFAULT NULL,
  5. ' Createtime ' datetime DEFAULT current_timestamp,
  6. ' UpdateTime ' datetime DEFAULT current_timestamp on UPDATE current_timestamp,
  7. PRIMARY KEY (' id ')
  8. ) Engine=innodb DEFAULT CHARSET=GBK;

After execution completes, insert the record in the table. Then modify a record: [SQL]View PlainCopy
    1. Update mytesttable set name = ' Wer ' where id = 2

View the data in the table again: you can see that createtime represents the time that this record was created, and UpdateTime records the time that the current record was modified.

MySQL Add time column (for record creation time and modified time)

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.