1Z0-051 QUESTION 16 Q操作符的使用

QUESTION 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.

答案:C

解析:

  题干有点错误,SELECT promo_name q'{'s start date was }' promo_begin_date AS "Promotion Launches" FROM promotions;执行会报错,因为promo_name后面和promo_begin_date前面都要加上连接符,正确的语句为SELECT promo_name||q'{'s start date was }' ||promo_begin_date AS "Promotion Launches" FROM promotions;,结果如下:

SQL> SELECT promo_name q'{'s start date was }' promo_begin_date
  2  AS "Promotion Launches"
  3  FROM promotions;
SELECT promo_name q'{'s start date was }' promo_begin_date
                  *
ERROR at line 1:
ORA-00923: FROM keyword not found where expected



SQL> SELECT promo_name||q'{'s start date was }'||promo_begin_date
  2  AS "Promotion Launches"
  3  FROM promotions;

Promotion Launches
--------------------------------------------------------------------------------

promotion1's start date was 12-OCT-13


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值