ocp 11g題庫詳解:1Z0-051-058題
最新學訊:近期OCP認證正在報名中,因考試人員較多請盡快報名獲取最近考試時間,報名費用請聯系在線老師,甲骨文官方認證,報名從速!
我要咨詢ocp 11g題庫詳解:1Z0-051-058題,完整題庫請點擊這里聯系老師咨詢了解
58. The PART_CODE column in the SPARES table contains the following list of values:
PART_CODE
A%_WQ123
A%BWQ123
AB_WQ123
Evaluate the following query:
SQL> SELECT part_code
FROM spares
WHERE part_code LIKE '%\%_WQ12%' ESCAPE '\'; 都有% _代替一個字符
Which statement is true regarding the outcome of the above query?
A. It produces an error.
B. It displays all values.
C. It displays only the values A%_WQ123 and AB_WQ123 .
D. It displays only the values A%_WQ123 and A%BWQ123 .
E. It displays only the values A%BWQ123 and AB_WQ123.
Answer: D
試題解析:
WHERE part_code LIKE '%\%_WQ12%' ESCAPE '\';
ESCAPE 將\為轉義字符,故\后面的%原型輸出,而%后面的_,在SQL語句里代表一個替換字符。
故結果A%_WQ123 和A%BWQ123