0

我正在尝试从一个表中进行选择,其中字段名称如 P & L 但我收到了替换变量的提示。有没有办法在没有 Substitution 变量的情况下触发该查询并获得相同的结果?

我的选择声明:

select * from student_master_table where STU_MIDDLE_NAME like '%P & L%';

SqlDeveloper 提示: 在此处输入图像描述

请帮忙。

4

2 回答 2

2

最简单的方法是将字符串分成两个字符串:

select * from student_master_table where STU_MIDDLE_NAME like '%P &'||' L%';
于 2013-10-15T09:32:33.577 回答
0

你必须逃避'L'

设置定义关闭;

select * from student_master_table where STU_MIDDLE_NAME like '%P & L%';

于 2013-10-15T09:32:35.553 回答