マニュアルページ
。これを使用して、STR_TO_DATE
フォーマットは機能しました。
select foo,
case when length(date(str_to_date(foo,"%Y-%m-%d %H:%i:%S"))) is not null then str_to_date(foo,"%Y-%m-%d %H:%i:%S")
when length(date(str_to_date(foo,"%b %d %Y %h:%i%p"))) is not null then str_to_date(foo,"%b %d %Y %h:%i%p")
end as newdate
from my_table
あなたが期待しているすべての人のために1つのフォーマットを入れてください。狂ったようにテストしてください。
頑張ってください。
(ああ、悪いスキーマをクリーンアップしようとしておめでとうございます!)