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.
関数の最初の引数として、組み込み SQL (Pro*C) で選択クエリを使用できますかDecode()。
Decode()
埋め込みSQLについてはわかりませんが、うまくいくはずです:
SELECT DECODE( ( SELECT 1 FROM dual ), 1, 'Yes', 'No' ) FROM dual Yes
SELECT括弧内に入れる必要があります。
SELECT