Date type differences and uses MySQL has five date types: date, time, year, datetime, and timestamp.
Application scenarios:
Implementation:
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:
|
<<: Analysis of the project process in idea packaging and uploading to cloud service
>>: Analysis of the method of setting up scheduled tasks in mysql
When a running container is terminated, how can w...
1. Log in to mysql: mysql -u root -h 127.0.0.1 -p...
This article shares with you how to use Vue to dr...
Modify /etc/my.cnf or /etc/mysql/my.cnf file [cli...
1. Windows Server 2019 Installation Install Windo...
[LeetCode] 183.Customers Who Never Order Suppose ...
Copy code The code is as follows: <!DOCTYPE ht...
A simple license plate input component (vue) for ...
definition Calcite can unify Sql by parsing Sql i...
Panther started as a rookie, and I am still a roo...
【Historical Background】 I have been working as a ...
First, you need to determine which fields or fiel...
Git is integrated in vscode, and many operations ...
First create a specific project directory for you...
This article deploys Jenkins+Maven+SVN+Tomcat thr...