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)
登錄后復(fù)制
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)
登錄后復(fù)制
To check that the current date/ time is inserted in the table or not, use the select command.
mysql> select *from CurrentDateTime;
登錄后復(fù)制
以下是顯示我們成功插入當(dāng)前日期/時(shí)間的輸出。
+---------------------+ | CurrentTime | +---------------------+ | 2018-10-18 13:14:30 | +---------------------+ 1 row in set (0.00 sec)
登錄后復(fù)制
以上就是如何在 MySQL 中插入當(dāng)前日期/時(shí)間?的詳細(xì)內(nèi)容,更多請(qǐng)關(guān)注www.92cms.cn其它相關(guān)文章!