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.
皆さん、こんにちは。
Oracle SQLで列のtime_code値「201834」を時間に変換するにはどうすればよいですか? Web を調べたり、to_date、cast、convert を使用して遊んだりするのに役立つものはあまり見つかりませんでした。
ありがとう。
HourMinuteSecond 形式があり、DATE 型としてキャストしたいと思います。to_date はトリックを行います。
select to_date(time_code, 'HH24MISS') from table;
これを DATE として DB に格納できます。(日付の部分は気にしないでください - 現在の日付が使用されます。表示するときに必ず破棄してください)