Which two SQL statements would execute successfully?

View the Exhibit and examine the structure and data in the INVOICE table.
Which two SQL statements would execute successfully? (Choose two.)

View the Exhibit and examine the structure and data in the INVOICE table.
Which two SQL statements would execute successfully? (Choose two.)

A.
SELECT AVG(inv_date )
FROM invoice;

B.
SELECT MAX(inv_date), MIN(cust_id)
FROM invoice;

C.
SELECT MAX(AVG(SYSDATE – inv_date))
FROM invoice;

D.
SELECT AVG( inv_date – SYSDATE), AVG(inv_amt)
FROM invoice;

Explanation:
Using the AVG and SUM Functions
You can use the AVG, SUM, MIN, and MAX functions against the columns that can store numeric data. The
example in the slide displays the average, highest, lowest, and sum of monthly salaries for all sales
representatives
Using the MIN and MAX Functions
You can use the MAX and MIN functions for numeric, character, and date data types. The example in the slide
displays the most junior and most senior employees.



Leave a Reply 1

Your email address will not be published. Required fields are marked *


Hola

Hola

“deepak
June 9, 2016 at 9:12 pm

SELECT MAX(AVG(SYSDATE-inv_date))
FROM invoice;

ORA-00978: nested group function without GROUP BY

Also AVG expects Number not date.
select avg(hire_date) from employees
ORA-00932: inconsistent datatypes: expected NUMBER got DATE”

B & D