2024年10月10日 建站教程
mysql哪些函数可以获取各种时间类型,下面web建站小编给大家介绍一下各种mysql函数!
获取当地具体日期和时间(年月日时分秒)
//方法一 select now() as time //方法二 select LOCALTIME() as time //方法三 select current_timestamp() as time //方法四 select LOCALTIMESTAMP() as time //方法五 select sysdate() as time
获取当地具体日期和时间(年月日)
//方法一 select curdate() as time //方法二 select current_date() as time
获取具体的时间(时分秒)
//方法一 select curtime() as time //方法二 select current_time() as //方法三 select utc_time() as time
本文链接:http://so.lmcjl.com/news/15063/