MySQL取得当前时间的函数是什么 格式化日期的函数是什么

2024-11-07 10:46:00
推荐回答(2个)
回答(1):

取得当前时间用 now() 就行。在数据库中格式化时间 用DATE_FORMA T(date, format) . 根据格式串format 格式化日期或日期和时间值date

回答(2):

试一下这个select date_format(now(),"%y-%m-%d")