zoukankan      html  css  js  c++  java
  • OCP-1Z0-051-V9.02-16题

    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.

    Answer: C

    答案解析:

    参考13题:http://blog.csdn.net/rlhua/article/details/16336797

    实验验证:


    sh@TEST1107> SELECT promo_name|| q'{'s start date was }'|| promo_begin_date  AS "Promotion Launches" FROM promotions;


    Promotion Launches

    ------------------------------------------------------------------

    NO PROMOTION #'s start date was 01-JAN-99

    newspaper promotion #16-108's start date was 23-DEC-00

    post promotion #20-232's start date was 25-SEP-98

    newspaper promotion #16-349's start date was 10-JUL-98

    internet promotion #14-471's start date was 26-FEB-00

    TV promotion #13-448's start date was 06-AUG-00


  • 相关阅读:
    好文章记录
    求职经历
    C正确初始化方式
    linux 常用命令
    MYSQL查找从小到大排列第90%个位置的数据
    最好的单例模式
    <%= %>和${}使用差异
    后台和jsp乱码处理
    浏览器下载文件
    文件下载
  • 原文地址:https://www.cnblogs.com/hzcya1995/p/13316344.html
Copyright © 2011-2022 走看看