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.
列があり、それを日付に変換してキャストしvarcharたいと考えています。どうすればそれができますか?yyyy-mm-dd hh:mi:ssmm-dd-yyyy hh:mi:ss
varchar
yyyy-mm-dd hh:mi:ss
mm-dd-yyyy hh:mi:ss
文字列を日付に変換するには:
to_date (the_string, 'yyyy-mm-dd hh:mi:ss')
次に、mm-dd-yyyy hh:mi:ss の形式の文字列としてフォーマットする場合:
to_char (to_date (the_string, 'yyyy-mm-dd hh:mi:ss'), 'mm-dd-yyyy hh:mi:ss')