2025年02月06日 建站教程
mysql有哪些时间语法,如何将当前时间插入数据库?下面web建站小编给大家简单介绍一下具体语法!
mysql时间方法:
方法名 | 格式 |
---|---|
current_timestamp | 2023-02-10 12:11:11 |
current_time | 12:11:11 |
current_data | 2023-02-10 |
now() | 2023-02-10 12:11:11 |
curdate() | 2023-02-10 |
curtime() | 12:11:11 |
将当前时间插入数据库:
insert into wp_post(id,pub_time) values (1,CURRENT_TIMESTAMP);
本文链接:http://so.lmcjl.com/news/22651/