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,转义字符是'\'
相关文章
- 02-03第3届83行代码大赛第2关赛题官方解析
- 02-03牛客华为机试第3题python
- 02-03leetcode第16题--3Sum Closest
- 02-03luogu2196 挖地雷(NOIP1996提高组第3题)
- 02-03OCP-1Z0-051-题目解析-第5题
- 02-032008 年研究生入学考试数学一填空题第 2 题解析
- 02-03汇编语言 第3版 王爽 检测点答案及详细解析 (更新中)
- 02-03WEB安全- SQL过滤字符后手工注入漏洞测试(第3题)
- 02-031998 年研究生入学考试数学二填空题第 1 题解析(三种方法)
- 02-03【OCP最新题库解析(052)--题3】Which two are true about external tables?