How to insert current date/time in MySQL?

WBOY
Release: 2023-09-04 22:29:09
forward
1448 people have browsed it

如何在 MySQL 中插入当前日期/时间?

To insert current date/ time in MySQL, use the now() function. Let us now see an example.

At first, we will create a table. The CREATE command is used to create a table.

mysql > create table CurrentDateTime -> ( -> CurrentTime datetime -> ); Query OK, 0 rows affected (1.14 sec)
Copy after login

Syntax to insert the current date/time with the help of insert command and now()

mysql> insert into CurrentDateTime values(now()); Query OK, 1 row affected (0.11 sec)
Copy after login

To check that the current date/ time is inserted in the table or not, use the select command.

mysql> select *from CurrentDateTime;
Copy after login

以下是显示我们成功插入当前日期/时间的输出。

+---------------------+ | CurrentTime | +---------------------+ | 2018-10-18 13:14:30 | +---------------------+ 1 row in set (0.00 sec)
Copy after login

The above is the detailed content of How to insert current date/time in MySQL?. For more information, please follow other related articles on the PHP Chinese website!

source:tutorialspoint.com
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!