View the Exhibit and examine the structure of the EMPLOYEES table. Examine the data in the ENAME and HIREDATE columns of the EMPLOYEES table: ENAME HIREDATE ---------------------------------- SMITH 17-DEC-80 ALLEN 20-FEB-81 WARD 22-FEB-81 You want to generate a list of…

Examine the data in the CUST_NAME column of the CUSTOMERS table. CUST_NAME --------------------- Lex De Haan Renske Ladwig Jose Manuel Urman Jason Mallin You want to extract only those customer names that have three names and display the * symbol…

Examine the data in the CUST_NAME column of the CUSTOMERS table. CUST_NAME ------------------------ Renske Ladwig Jason Mallin Samuel McCain Allan MCEwen Irene Mikkilineni Julia Nayer You need to display customers’ second names where the second name starts with "Mc" or…

View the Exhibit and examine the structure of the CUSTOMERS table. In the CUSTOMERS table, the CUST_LAST_NAME column contains the values ‘Anderson’ and ‘Ausson’. You issue the following query: SQL> SELECT LOWER(REPLACE(TRIM(‘son’ FROM cust_last_name),’An’,’O’)) FROM CUSTOMERS WHERE LOWER(cust_last_name) LIKE ‘a%n’;…

In the CUSTOMERS table, the CUST_CITY column contains the value ‘Paris’ for the CUST_FIRST_NAME ‘ABIGAIL’. Evaluate the following query: What would be the outcome? A. Abigail PA B. Abigail Pa C. Abigail IS D. an error message