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.
select ステートメントで日付を出力しようとしていますが、出力に文字を追加する必要があります。
to_char(date_updated, 'YYYY-MM-DDTHH:mm:ss')
Oracle は T が好きではありません。T をコロンやダッシュのように出力したいだけです。バックスラッシュなどでエスケープできますか?
あなたはそれの周りに二重引用符が必要です:
to_char(date_updated, 'YYYY-MM-DD"T"HH:mm:ss')