码迷,mamicode.com
首页 > 其他好文 > 详细

OCP-1Z0-051-题目解析-第3题

时间:2014-06-26 17:40:00      阅读:159      评论:0      收藏:0      [点我收藏+]

标签:style   ext   color   get   strong   string   

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 ‘\_‘
Answer: B
题目解析:
题意是:要在Sales表中查询 PROD_ID字段中含有字符串‘_D123‘的行
_下划线在like字句中是代表任意一个字符,现在要匹配‘_D123‘就需要对_下划线进行转义,所以正确的答案是B,转义字符是‘\‘

OCP-1Z0-051-题目解析-第3题,布布扣,bubuko.com

OCP-1Z0-051-题目解析-第3题

标签:style   ext   color   get   strong   string   

原文地址:http://www.cnblogs.com/wjx515/p/3808591.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!