View the Exhibits and examine the structures of the CUSTOMERS, SALES, and COUNTRIES tables. You need to generate a report that shows all country names, with corresponding customers (if any) and sales details (if any), for all customers. Which FROM…

View the Exhibit and examine the data in the PROJ_TASK_DETAILS table. The PROJ_TASK_DETAILS table stores information about tasks involved in a project and the relation between them. The BASED_ON column indicates dependencies between tasks. Some tasks do not depend on…

Examine the structure of the ORDERS table: You want to find the total value of all the orders for each year and issue the following command: SQL>SELECT TO_CHAR(order_date,’rr’), SUM(order_total) FROM orders GROUP BY TO_CHAR(order_date,’yyyy’); Which statement is true regarding the…