OCP-1Z0-051 第3题 转义字符

一、原题
You need to extract details of those products in the SALES table where the PROD_ID column contains the string '_D123'.
Which WHERE clause could be used in the SELECT statement to get the required output?
A. WHERE prod_id LIKE '%_D123%' ESCAPE '_'
B. WHERE prod_id LIKE '%\_D123%' ESCAPE '\'
C. WHERE prod_id LIKE '%_D123%' ESCAPE '%_'
D. WHERE prod_id LIKE '%\_D123%' ESCAPE '\_'
         答案 B

二、题目翻译

     要从SALES表中提取出PROD_ID列包含'_D123'字符串的产品明细。
     下面哪一个WHERE条件子句可以获得所需的输出结果?

三、题目解析
      ESCAPE子句为指定转译字符,因为'_'下画线在LIKE子句中指的是任意一个字符,所以需要把'_'下画线进行转义,转义字符设置为'\'。

四、实验

SQL> drop table test;

Table dropped.

SQL> create table test(id int,prod_id varchar2(20));

Table created.

SQL> insert into test values(1,'123_D123abc');

1 row created.

SQL> insert into test values(2,'123abc');

1 row created.

SQL> insert into test values(3,'D123');

1 row created.

SQL> insert into test values(4,'Da123');

1 row created.

SQL> commit;

Commit complete.

SQL> select * from test;

        ID PROD_ID
---------- ----------------------------------------
         1 123_D123abc
         2 123abc
         3 D123
         4 Da123

SQL> select * from test
  2  WHERE prod_id LIKE '%_D123%' ESCAPE '_';
WHERE prod_id LIKE '%_D123%' ESCAPE '_'
                   *
ERROR at line 2:
ORA-01424: missing or illegal character following the escape character

SQL> select * from test
  2  WHERE prod_id LIKE '%\_D123%' ESCAPE '\';

        ID PROD_ID
---------- ----------------------------------------
         1 123_D123abc

SQL> select * from test
  2  WHERE prod_id LIKE '%_D123%' ESCAPE '%_';
WHERE prod_id LIKE '%_D123%' ESCAPE '%_'
                                    *
ERROR at line 2:
ORA-01425: escape character must be character string of length 1

SQL> select * from test
  2  WHERE prod_id LIKE '%\_D123%' ESCAPE '\_';
WHERE prod_id LIKE '%\_D123%' ESCAPE '\_'
                                     *
ERROR at line 2:
ORA-01425: escape character must be character string of length 1

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值