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.
P & L のようなフィールド名を持つテーブルから選択しようとしていますが、置換変数を求めるプロンプトが表示されます。Substitution 変数を使用せずにそのクエリを実行して同じ結果を得る方法はありますか?
私のselectステートメント:
select * from student_master_table where STU_MIDDLE_NAME like '%P & L%';
SqlDeveloper プロンプト:
助けてください。
最も簡単な方法は、文字列を 2 つの文字列に分割することです。
select * from student_master_table where STU_MIDDLE_NAME like '%P &'||' L%';
「L」をエスケープする必要があります
DEFINE をオフに設定します。