You need to display the last names of those employees who ha

题目
单选题
You need to display the last names of those employees who have the letter "A" as the second character in their names.Which SQL statement displays the required results?()
A

SELECT last_name FROM EMP WHERE last_ name LIKE '_A%';

B

SELECT last_name FROM EMP WHERE last name ='*A%'

C

SELECT last_name FROM EMP WHERE last name ='_A%';

D

SELECT last_name FROM EMP WHERE last name LIKE '*A%'

如果没有搜索结果或未解决您的问题,请直接 联系老师 获取答案。
相似问题和答案

第1题:

ExhibitExamine the data in the EMPLOYEES and DEPARTMENTS tables.You want to retrieve all employees‘ last names, along with their manager‘s last names and their department names. Which query would you use?()

A. SELECT last_name, manager_id, department_name FROM employees e FULL OUTER JOIN department d ON (e.department_id = d.department_id);

B. SELECT e.last_name, m.last_name, department_name FROM employees e LEFT OUTER JOIN employees m on ( e.managaer_id = m.employee_id) LEFT OUTER JOIN department d ON (e.department_id = d.department_id);

C. SELECT e.last_name, m.last_name, department_name FROM employees e RIGT OUTER JOIN employees m on ( e.manager_id = m.employee_id) FULL OUTER JOIN department d ON (e.department_id = d.department_id);

D. SELECT e.last_name, m.last_name, department_name FROM employees e LEFT OUTER JOIN employees m on ( e.manager_id = m.employee_id) RIGT OUTER JOIN department d ON (e.department_id = d.department_id);

E. SELECT e.last_name, m.last_name, department_name FROM employees e RIGHT OUTER JOIN employees m on ( e.manager_id = m.employee_id) RIGHT OUTER JOIN departments d ON (e.department_id = d.department_id)

F. SELECT last_name, manager_id, department_name FROM employees e JOIN department d ON (e.department_id = d.department_id);


参考答案:B

第2题:

The EMP table contains these columns:You need to display the employees who have not been assigned to any department.You write the SELECT statement:What is true about this SQL statement?()

A. The SQL statement displays the desired results.

B. The column in the WHERE clause should be changed to display the desired results.

C. The operator in the WHERE clause should be changed to display the desired results.

D. The WHERE clause should be changed to use an outer join to display the desired results.


参考答案:C

第3题:

你们怎样选拔参加保卫工作的人员?

A.How long will you select those employees for the security work?

B.Why do you select those employees for the security work?

C.How will you select those employees for the security work?

D.How do you select security guards for the World Expo?


正确答案:C

第4题:

单选题
You issue the following command on the RMAN prompt.   REPORT NEED BACKUP DAYS 5;   Which statement is true about executing this command?()
A

 It will display a list of files that need incremental backup

B

 It will display a list of files that need backup after five days

C

 It will display a list of files that were backed up in the last five days

D

 It will display a list of files that have not been backed up in the last five days

E

 It will apply the current retention policy to determine the files that need to be backed up


正确答案: B
解析: 暂无解析

第5题:

You perform a security audit on a server named Server1. You install the Microsoft Network Monitor 3.0 application on Server1.You find that only some of the captured frames display host mnemonic names in the Source column and the Destination column. All other frames display IP addresses.You need to display mnemonic host names instead of IP addresses for all the frames. What should you do? ()

  • A、Create a new display filter and apply the filter to the capture.
  • B、Create a new capture filter and apply the filter to the capture.
  • C、Populate the Aliases table and apply the aliases to the capture.
  • D、Configure the Network Monitor application to enable the Enable Conversations option. Recapture the data to a new file.

正确答案:C

第6题:

The EMPLOYEES table contains these columns:You need to write a query that will produce these results:1. Display the salary multiplied by the commission_pct.2. Exclude employees with a zero commission_pct.3. Display a zero for employees with a null commission value.Evaluate the SQL statement:What does the statement provide?()

A. All of the desired results

B. Two of the desired results

C. One of the desired results

D. An error statement


参考答案:C

第7题:

You issue the following command on the RMAN prompt.   RMAN> REPORT NEED BACKUP DAYS = 5 DATABASE;   Which statement is true about executing this command?()

  • A、 It will display a list of files that need incremental backup.
  • B、 It will display a list of files that need backup after five days.
  • C、 It will display a list of files that were backed up in the last five days.
  • D、 It will display a list of files that have not been backed up in the last five days.
  • E、 It will apply the current retention policy to determine the files that need to be backed up.

正确答案:D

第8题:

The EMPLOYEES table contains these columns:LAST_NAME VARCHAR2 (25)SALARY NUMBER (6,2)COMMISSION_PCT NUMBER (6)You need to write a query that will produce these results:1. Display the salary multiplied by the commission_pct.2. Exclude employees with a zero commission_pct.3. Display a zero for employees with a null commission value. Evaluate the SQL statement:SELECT LAST_NAME, SALARY*COMMISSION_PCT FROM EMPLOYEESWHERE COMMISSION_PCT IS NOT NULL;What does the statement provide? ()

A. All of the desired results

B. Two of the desired results

C. One of the desired results

D. An error statement


参考答案:C

第9题:

单选题
The EMPLOYEES table contains these columns: LAST_NAME VARCHAR2 (25) SALARY NUMBER (6,2) COMMISSION_PCT NUMBER (6) You need to write a query that will produce these results: 1.Display the salary multiplied by the commission_pct. 2.Exclude employees with a zero commission_pct. 3.Display a zero for employees with a null commission value. Evaluate the SQL statement: SELECT LAST_NAME, SALARY*COMMISSION_PCT FROM EMPLOYEES WHERE COMMISSION_PCT IS NOT NULL; What does the statement provide?()
A

all of the desired results

B

two of the desired results

C

one of the desired results

D

an error statement


正确答案: A
解析: 暂无解析

第10题:

单选题
You perform a security audit on a server named server1. You install the Microsoft network monitor 3.0 application on server1. You find that only some of the captured frames dsplay host mnemonic names in the source column and the destination column. All other frames display ip addresses. You need to display mnemonic host names instead of ip addresses for all the frames what should you do?()
A

Create a new display filter and apply the filter to the capture.

B

Create a new capture filter and apply the filter to the capture.

C

Populate the aliases table and apply the aliases to the capture.

D

Configure the network monitor application to enable the enable converstations option, recapture the data to a new file.


正确答案: A
解析: 暂无解析

更多相关问题