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;
标签:-%,str,Date,Str,Mysql,date,select From: https://www.cnblogs.com/nanjie1101/p/17072372.html