How to add default time to a field in MySQL

How to add default time to a field in MySQL

Date type differences and uses

MySQL has five date types: date, time, year, datetime, and timestamp.

type byte Format use Whether to support setting system default values
date 3 YYYY-MM-DD Date Value Not supported
time 3 HH:MM:SS Time value or duration Not supported
year 1 YYYY years Not supported
datetime 8 YYYY-MM-DD HH:MM:SS Mixed date and time values Not supported
timestamp 4 YYYYMMDD HHMMSS Mixed date and time, can be used as timestamp support

Application scenarios:

  • In the data table, to record when each piece of data was created, the application does not need to record it specifically, but the data database obtains the current time and automatically records the creation time;
  • In the database, to record when each piece of data was modified, the application does not need to record it specifically, but the data database obtains the current time and automatically records the modification time;

Implementation:

  • Set the field type to TIMESTAMP
  • Set the default value to CURRENT_TIMESTAMP

Example application:

MySQL script implementation use case

`create_time` datetime DEFAULT CURRENT_TIMESTAMP COMMENT 'Creation time',
`update_time` datetime DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Update time',
`datalevel` tinyint(1) DEFAULT '1' COMMENT 'Has it been deleted (0 deleted/1 normal)',

ALTER TABLE table_name
ADD COLUMN create_time datetime NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Creation time';
ALTER TABLE table_name
ADD COLUMN update_time datetime DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Update time';
ALTER TABLE table_name
ADD COLUMN datalevel tinyint(1) DEFAULT '1' COMMENT 'Has it been deleted (0 deleted/1 normal)';

MySQL creates a normal index

ALTER TABLE projectfile ADD INDEX (fileuploadercode, projectid);

Summarize

The above is the full content of this article. I hope that the content of this article will have certain reference learning value for your study or work. Thank you for your support of 123WORDPRESS.COM.

You may also be interested in:
  • MySQL table field setting default value (graphic tutorial and pay attention to details)
  • Add a field to the table in the MySQL command line (field name, whether it is empty, default value)

<<:  Analysis of the project process in idea packaging and uploading to cloud service

>>:  Analysis of the method of setting up scheduled tasks in mysql

Recommend

How to access MySql through IP address

1. Log in to mysql: mysql -u root -h 127.0.0.1 -p...

The vue project realizes drawing a watermark in a certain area

This article shares with you how to use Vue to dr...

How to set utf-8 encoding in mysql database

Modify /etc/my.cnf or /etc/mysql/my.cnf file [cli...

How to set up Windows Server 2019 (with pictures and text)

1. Windows Server 2019 Installation Install Windo...

SQL implementation of LeetCode (183. Customers who have never placed an order)

[LeetCode] 183.Customers Who Never Order Suppose ...

HTML implementation of a simple calculator with detailed ideas

Copy code The code is as follows: <!DOCTYPE ht...

Detailed explanation of how to use the Vue license plate input component

A simple license plate input component (vue) for ...

Apache Calcite code for dialect conversion

definition Calcite can unify Sql by parsing Sql i...

CentOS 7.2 builds nginx web server to deploy uniapp project

Panther started as a rookie, and I am still a roo...

A brief analysis of MySQL's WriteSet parallel replication

【Historical Background】 I have been working as a ...

Practical method of deleting a row in a MySql table

First, you need to determine which fields or fiel...

VSCode configuration Git method steps

Git is integrated in vscode, and many operations ...

How to run Python script on Docker

First create a specific project directory for you...

Detailed explanation of the Docker deployment tutorial for Jenkins beginners

This article deploys Jenkins+Maven+SVN+Tomcat thr...