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

技术百科 WBOY 发布时间:2023-09-04 浏览:

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)

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)

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

mysql> select *from CurrentDateTime;

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

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


# cn  # oss  # hongkong  # keji  # jpg  # class  # function  # aliyucs  # select  # php  # mysql  # table  # date  # brush  # EATE 


相关栏目: <?muma $count = M('archives')->where(['typeid'=>$field['id']])->count(); ?> 【 AI推广<?muma echo $count; ?> 】 <?muma $count = M('archives')->where(['typeid'=>$field['id']])->count(); ?> 【 SEO优化<?muma echo $count; ?> 】 <?muma $count = M('archives')->where(['typeid'=>$field['id']])->count(); ?> 【 技术百科<?muma echo $count; ?> 】 <?muma $count = M('archives')->where(['typeid'=>$field['id']])->count(); ?> 【 谷歌推广<?muma echo $count; ?> 】 <?muma $count = M('archives')->where(['typeid'=>$field['id']])->count(); ?> 【 百度推广<?muma echo $count; ?> 】 <?muma $count = M('archives')->where(['typeid'=>$field['id']])->count(); ?> 【 网络营销<?muma echo $count; ?> 】 <?muma $count = M('archives')->where(['typeid'=>$field['id']])->count(); ?> 【 案例网站<?muma echo $count; ?> 】 <?muma $count = M('archives')->where(['typeid'=>$field['id']])->count(); ?> 【 精选文章<?muma echo $count; ?>

相关推荐

在线咨询

点击这里给我发消息QQ客服

在线咨询

免费通话

24h咨询:4006964355


如您有问题,可以咨询我们的24H咨询电话!

免费通话

微信扫一扫

微信联系
返回顶部