16.Evaluate the following query: SQL> SELECT promo_name||q'{'s start date was }'||promo_begin_date A

来源:互联网 发布:本地网络ip 编辑:程序博客网 时间:2024/06/09 10:02
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
解析:这个考察的也是q前缀,q前缀可以参考13题
A:错误,这里说花括号已经使用
B:错误,说是数据类型不匹配
C:正确
D:错误,说是会显示{'s start date was },肯定是不正确的
0 0