OCP 12c最新考试题库及答案(071-2)
2、(4-7) choose the best answer:
You need to display the first names of all customers from the CUSTOMERS table that contain the
character 'e' and have the character 'a' in the second last position.
Which query would give the required output?
A) SELECT cust_first_name
FROM customers
WHERE INSTR(cust_first_name, 'e')<>'' AND
SUBSTR(cust_first_name, -2, 1)='a';
B) SELECT cust_first_name
FROM customers
WHERE INSTR(cust_first_name, 'e')<>0 AND
SUBSTR(cust_first_name, -2, 1)='a';
C) SELECT cust_first_name
FROM customers
WHERE INSTR(cust_first_name, 'e')<>0 AND
SUBSTR(cust_first_name, LENGTH(cust_first_name),-2)='a';
D) SELECT cust_first_name
FROM customers
WHERE INSTR(cust_first_name, 'e')IS NOT NULL AND
SUBSTR(cust_first_name, 1,-2)='a';
Answer:B
OCP 12c最新考试题库及答案(071-2)的更多相关文章
- Oracle ocp 12c-071最新考试题库及答案-1
		
choose the best answer: View the Exhibit and examine the structure of the CUSTOMERS table. CUSTOMER_ ...
 - OCP 052最新考试题库和答案收集-34
		
34.Which two can be backed up by using RMAN when a database Is open in ARCHIVELOG mode, so that medi ...
 - OCP认证052考试最新考试题库和答案整理-33
		
33.Where Is backup metadata stored for use by Recovery Manager (RMAN)? A) In the control file B) In ...
 - (2019)OCP 12c 062考试题库出现大量新题-4
		
4.Which four are true about creating and running a remote database scheduler jobs? A) A credential i ...
 - 2018 OCP 052最新题库及答案-4
		
4.For which requirement should you configure shared servers? A) accommodating an increasing number o ...
 - OCP 052最新题库还有答案收集整理-第26题
		
26.In which state can you back up a database in ARCHIVELOGMODE using RMAN? A. NOMOUNT, MOUNT, AND OP ...
 - ocp最新考试题库:052新考题及答案整理-36
		
36.Which two are true about roles? A) A role can be granted a combination of system and object privi ...
 - OCP 12c最新考试原题及答案(071-4)
		
4.(4-11) choose two:View the Exhibit and examine the data in the PRODUCT_INFORMATION table.Which two ...
 - OCP 12c最新考试原题及答案(071-8)
		
8.(5-4) choose the best answer:You need to produce a report where each customer's credit limit has b ...
 
随机推荐
- 在zookeeper集群的基础上,搭建伪solrCloud集群
			
伪集群的搭建:将solrCloud搭建到同一台机器上. 准备工作 1 将在window中部署的单机版solr上传到服务器(虚拟机)中 solr的简单部署:在tomcat中启动slor 的内容 这一次放 ...
 - ubuntu 源码安装 lnmp 环境
			
准备篇 下载软件包 1.下载nginx http://nginx.org/download/nginx-1.2.0.tar.gz 2.下载pcre (支持nginx伪静态) ftp://ftp.cs ...
 - Paradox
			
克己博伦 当一个无法阻挡的力量,碰到了一个无法移动的物体?如果这个力量移动了物体,那么这个物体就不是无法移动的.如果这个力量没有移动物体,那么这个无法阻挡的力量就被挡了下来. 上帝能造出一个重到他自己 ...
 - 40 Questions to test your skill in Python for Data Science
			
Comes from: https://www.analyticsvidhya.com/blog/2017/05/questions-python-for-data-science/ Python i ...
 - 常见的移动端Web页面问题解决方案
			
1.安卓浏览器看背景图片,有些设备会模糊. 用同等比例的图片在PC机上很清楚,但是手机上很模糊,原因是什么呢? 经过研究,是devicePixelRatio作怪,因为手机分辨率太小,如果按照分辨率来显 ...
 - java 线程的几个注解
			
Java并发编程中,用到了一些专门为并发编程准备的 Annotation. 主要包括三类: 类 Annotation(注解) 就像名字一样,这些注解是针对类的.主有要以下三个: @ThreadSafe ...
 - p2408 不同子串个数
			
传送门 分析 首先我们不难求出一共有多少子串 之后我们只需要减掉重复个数即可 于是我们对于每个后缀减去它跟它前一名的最长公共前缀即可 代码 #include<iostream> #incl ...
 - Mac Sublime 相关资源
			
MAC上安装并破解最新SublimeText3103版本 http://blog.csdn.net/yanzi1225627/article/details/50703942 Mac版的Sublime ...
 - Windows下如何安装MongoDB
			
下载地址: http://www.mongodb.org/downloads 我下载的是:mongodb-win32-x86_64-2008plus-2.6.6 解压到:D:\soft 同时在该目录下 ...
 - [GO]文件的收发服务器
			
发送方 package main import ( "fmt" "os" "net" "io" ) //发送文件内容 f ...