Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 mysql 中遇到了 STR_TO_DATE 的一些问题。以下是返回 NULL。
select str_to_date('2012-04-28 23:00:15', '%Y-%m-%d %h:%i:%s');
这里有什么问题?
您需要大写%H,而不是小写%h。
%H
%h
根据文档,
%H 小时 (00..23) %h 小时 (01..12)
也可以使用:
str_to_date('2012-04-28 23:00:15', '%Y-%m-%d %T')