pubilcTreat

关于Mysql中str_to_date函数

Str_To_Date(str,format):提供2个参数,Str是字符串时间,年:月:日 时:分:秒的值,format是设置什么日期格式的条件。

一般都会自动写代码显示

select Str_To_Date(now(),'%Y-%m-%d %H:%i:%s') AS A;

有错误点建议不要这样写

 

这样写就是错误了,会提示

 

 

 正确写法是

select STR_TO_DATE(daname,'%Y-%m-%d %H:%i:%s') as 'A',model.*  from model;

 

posted on 2023-01-29 12:33  pubilcTreat  阅读(740)  评论(0编辑  收藏  举报

导航