Analyzing the MySql CURRENT_TIMESTAMP function by example

Analyzing the MySql CURRENT_TIMESTAMP function by example

When creating a time field

DEFAULT CURRENT_TIMESTAMP

Indicates that when inserting data, the default value of this field is the current time

ON UPDATE CURRENT_TIMESTAMP

Indicates that every time this data is updated, the field will be updated to the current time

These two operations are maintained by the MySQL database itself, so the two fields [Creation Time] and [Update Time] can be generated based on this feature, and no code is required to maintain them.

as follows:

CREATE TABLE `mytest` (
  `text` varchar(255) DEFAULT ''COMMENT 'content',
  `create_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Creation time',
  `update_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Update time'
)ENGINE=InnoDB DEFAULT CHARSET=utf8;

Can be operated directly through navicat's visual interface

So how do you set a specific default time?

As follows, note that there are two single quotes

TIMESTAMPDEFAULT 'yyyy-mm-dd hh:mm:ss'

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • Solution to MySQL error TIMESTAMP column with CURRENT_TIMESTAMP
  • Detailed explanation of TIMESTAMP usage in MySQL
  • Share the pitfalls of MySQL's current_timestamp and their solutions

<<:  How to use sed command to efficiently delete specific lines of a file

>>:  Webpack builds scaffolding to package TypeScript code

Recommend

Why is it slow when using limit and offset paging scenarios?

Let’s start with a question Five years ago when I...

Full process record of Nginx reverse proxy configuration

1. Preparation Install Tomcat on Linux system, us...

uniapp implements date and time picker

This article example shares the specific code of ...

A complete list of meta tag settings for mobile devices

Preface When I was studying the front end before,...

A brief analysis of Vue's asynchronous update of DOM

Table of contents The principle of Vue asynchrono...

How to view Linux ssh service information and running status

There are many articles about ssh server configur...

js array fill() filling method

Table of contents 1. fill() syntax 2. Use of fill...

Solution to overflow:hidden failure in CSS

Cause of failure Today, when I was writing a caro...

How to handle images in Vue forms

question: I have a form in Vue for uploading blog...

Detailed explanation of the use of Element el-button button component

1. Background Buttons are very commonly used, and...

Solution to ES memory overflow when starting docker

Add the jvm.options file to the elasticsearch con...

Detailed explanation of nginx's default_server definition and matching rules

The default_server directive of nginx can define ...

SQL query for users who have placed orders for at least seven consecutive days

Create a table create table order(id varchar(10),...

Some improvements in MySQL 8.0.24 Release Note

Table of contents 1. Connection Management 2. Imp...