博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
OCP-1Z0-051-名称解析-文章12称号
阅读量:5103 次
发布时间:2019-06-13

本文共 1205 字,大约阅读时间需要 4 分钟。

12. You need to produce a report where each customer's credit limit has been incremented by $1000. In

the output, the customer's last name should have the heading Name and the incremented credit limit
should be labeled New Credit Limit. The column headings should have only the first letter of each word in uppercase. 
Which statement would accomplish this requirement?

(题意:你须要制作一个报表,该表报中顾客的credit limit须要加1000,顾客名称字段的标题名称为Name。新credit limit的标题名称为 New Credit Limit,这三个单词要首字母大写。问以下的哪条语句符合上面的要求?)

A.
SELECT cust_last_name Name, cust_credit_limit + 1000 
"New Credit Limit" 
FROM customers;
B.
SELECT cust_last_name AS Name, cust_credit_limit + 1000 
AS New Credit Limit 
FROM customers;
C.
SELECT cust_last_name AS "Name", cust_credit_limit + 1000 
AS "New Credit Limit" 
FROM customers;
D.
SELECT INITCAP(cust_last_name) "Name", cust_credit_limit + 1000 
INITCAP("NEW CREDIT LIMIT") 
FROM customers;

Answer: B

题目解析:

这道题是关于字段标题是否加双引號的问题,关于双引號的使用规则例如以下:

1.假设字段名称是多个单词组成,中间有空格,如New Credit Limit。则必须加双引號,否则会报错。

2.假设标题名称是一个单词或多个连续的单词。假设不加双引號。则输出的格式是全然大写的,如选项A,就会输出NAME。
   假设加双引號则会原样输出,如选项C会输出 Name
综上所述,所以这道题的正确答案是C
D选项中的initcap函数不可用于字段名称。是语方法错误。

版权声明:本文博主原创文章。博客,未经同意不得转载。

转载于:https://www.cnblogs.com/yxwkf/p/4818468.html

你可能感兴趣的文章
多线程/多进程/异步IO
查看>>
leetcode 442. 数组中重复的数据 java
查看>>
struts2 文件上传下载注解示例
查看>>
编写一个简单的JAVA WEB Servlet页面
查看>>
JSP:Cookie实现永久登录(书本案例)
查看>>
js window.open 参数设置
查看>>
032. asp.netWeb用户控件之一初识用户控件并为其自定义属性
查看>>
linux--GCC用法
查看>>
Ubuntu下安装MySQL及简单操作
查看>>
OWIN是什么?
查看>>
前端监控
查看>>
centos6.5 mysql忘记登入密码
查看>>
Trusted Execution Technology (TXT) --- 启动控制策略(LCP)篇
查看>>
clipboard.js使用方法
查看>>
绘图库:Matplotlib
查看>>
0906第一次作业
查看>>
Ceph Monitor基础架构与模块详解
查看>>
dbca:Exception in thread "main" java.lang.UnsatisfiedLinkError: get
查看>>
hdu 1232 畅通工程(并查集)
查看>>
移动开发平台-应用之星app制作教程
查看>>