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')