MYSQL中str_to_date()函数的用法

str_to_date函数

  • str_to_date(str,format) 函数
  • format参数格式
  • 代码

str_to_date(str,format) 函数

str:将String转化为日期型的数据
format:转化后的格式

format参数格式

%Y 年
%m 月
%d 日
%H 小时
%i 分
%s 秒

代码

SELECT STR_TO_DATE('2020/01/02','%Y');

结果

2020-00-00

你可能感兴趣的:(MYSQL中str_to_date()函数的用法)