OCP 1Z0 051 16

1406 단어
16. Evaluate the following query: 
SQL> SELECT promo_name ||  q'{'s start date was }'  || promo_begin_date                            
AS "Promotion Launches" 
FROM promotions; 
What would be the outcome of the above query? 
A. It produces an error because flower braces have been used. 
B. It produces an error because the data   types are not matching. 
C. It executes successfully and introduces an   's at the end of each promo_name in the output. 
D. It executes successfully and displays the literal " {'s start date was } " for each row in the output. 
시험 장소:
q-quote
1) q - quote 정의 부 호 는 TAB, 빈 칸, 리 턴 을 제외 한 모든 단일 바이트 나 다 중 바이트 문자 일 수 있 습 니 다.
2) 단일 바이트 의 시작 정의 부 호 를 제외 하고 [, {, <, (, 그러면 끝 정의 부 호 는 반드시],}, >,)  다른 시작 정의 문자 와 끝 정의 문자 가 일치 해 야 합 니 다. q - quote 정의 문자 의 내 문자열 은 작은 따옴표 로 표시 할 수 있 습 니 다.문자열 의 시작 과 끝 위 치 는 정의 부 호 를 기준 으로 합 니 다.13 번 시험 점 과 같다.
SQL> SELECT promo_name || q'{'s start date was }' || promo_begin_date AS "Promotion Launches"
  2    FROM sh.promotions
  3    WHERE ROWNUM <= 2;
Promotion Launches
--------------------------------------------------------------
NO PROMOTION #'s start date was 01-1  -99
newspaper promotion #16-108's start date was 23-12 -00
Executed in 0.016 seconds

Answer: C

좋은 웹페이지 즐겨찾기