Example of how to set automatic creation time and modification time in mysql

Example of how to set automatic creation time and modification time in mysql

This article describes how to set the automatic creation time and modification time of MySQL. Share with you for your reference, the details are as follows:

The first one is defined by ddl

CREATE TABLE `course` (
 `course` varchar(255) DEFAULT NULL,
 `user` varchar(255) DEFAULT NULL,
 `score` int(11) DEFAULT NULL,
 `id` int(11) NOT NULL AUTO_INCREMENT,
 `create_time` datetime DEFAULT CURRENT_TIMESTAMP COMMENT 'Creation time',
 `update_time` datetime DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Update time',
 PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8;

The second method is to modify the table design directly through the tool

The third method is to modify the fields through SQL statements.

-- Modify create_time to set the default time CURRENT_TIMESTAMP 
ALTER TABLE `course`
MODIFY COLUMN `create_time` datetime NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Creation time';

-- Add update_time and set the default time to CURRENT_TIMESTAMP. Set the update time to ON UPDATE CURRENT_TIMESTAMP. 
ALTER TABLE `course`
ADD COLUMN `update_time` datetime NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Update time';

Readers who are interested in more MySQL-related content can check out the following topics on this site: "MySQL query skills", "MySQL transaction operation skills", "MySQL stored procedure skills", "MySQL database lock related skills summary" and "MySQL common function summary"

I hope this article will be helpful to everyone's MySQL database design.

You may also be interested in:
  • Analyze the method of setting the current time as the default value in MySQL
  • mysql sets the default time value
  • An in-depth summary of MySQL time setting considerations

<<:  Vue.js manages the encapsulation of background table components

>>:  Specific use of Linux man command

Recommend

A brief introduction to bionic design in Internet web design

When it comes to bionic design, many people will t...

Enabling or disabling GTID mode in MySQL online

Table of contents Basic Overview Enable GTID onli...

The front end creates and modifies CAD graphics details through JavaScript

Table of contents 1. Current situation 2. Create ...

Summary of uncommon operators and operators in js

Summary of common operators and operators in java...

MySQL randomly extracts a certain number of records

In the past, I used to directly order by rand() t...

Explanation of the configuration and use of MySQL storage engine InnoDB

MyISAM and InnoDB are the most common storage eng...

JavaScript anti-shake and throttling detailed explanation

Table of contents Debounce Throttle Summarize Deb...

4 ways to avoid duplicate insertion of data in Mysql

The most common way is to set a primary key or un...

Three ways to avoid duplicate insertion of data in MySql

Preface In the case of primary key conflict or un...

Detailed explanation of the wonderful CSS attribute MASK

This article will introduce a very interesting at...

Detailed tutorial on installing Python 3 virtual environment in Ubuntu 20.04

The following are all performed on my virtual mac...

Embed codes for several older players

The players we see on the web pages are nothing m...

MySQL statement arrangement and summary introduction

SQL (Structured Query Language) statement, that i...