Question: 1
Examine the data in the CUST_NAME column of the CUSTOMERS table.
You want to extract only those customer names that have three names and display the * symbol in place of the first name as follows:
Which two queries give the required output?
Answer : A, B
Show Answer
Hide Answer
Question: 2
View the Exhibit and examine the structure of the BOOKS table.
The BOOKS table contains details of 100 books.
Examine the commands executed and their outcome:
Which statement is true?
Question: 3
Which statement is true about the Oracle SQL, DELETE and TRUNCATE statements?
Question: 4
View the Exhibit and examine the description of the EMPLOYEES table.
Evaluate the following SQL statement:
SELECT first_name, employee_id, NEXT_DAY(ADD_MONTHS(hire_date, 6), 1) ''Review'' FROM employees;
The query was written to retrieve the FIRST_NAME, EMPLOYEE_ID, and review date for employees. The review date is the firsts Monday after the completion of six months of the hiring. The NLS_TERRITORY parameter is set to AMERICA in the session.
Which statement is true regarding this query?
Question: 5
View the Exhibit and examine the structure of the CUSTOMERS table.
CUSTOMER_VU is a view based on CUSTOMERS_BR1 table which has the same structure as CUSTOMERS table.
CUSTOMERS need to be updated to reflect the latest information about the customers.
What is the error in the following MERGE statement?