Which of the following is a valid aggregate function: Question 10 options: SELEC
ID: 3885612 • Letter: W
Question
Which of the following is a valid aggregate function:
Question 10 options:
SELECT * FROM vehicletype ORDER BY manufacturer;
SELECT typeofvehicle FROM vehicletype ORDER BY year;
SELECT SUM (inventoryonhand) FROM manufacturer;
SELECT MIN(year) FROM vehicletype;
SELECT MAX(inventoryonhand) FROM typeofvehicle;
SELECT * FROM vehicletype ORDER BY manufacturer;
SELECT typeofvehicle FROM vehicletype ORDER BY year;
SELECT SUM (inventoryonhand) FROM manufacturer;
SELECT MIN(year) FROM vehicletype;
SELECT MAX(inventoryonhand) FROM typeofvehicle;
Explanation / Answer
Ans)SELECT MIN(year) FROM vehicletype;
We have to apply Aggregate function on the nummeric data column in the table.So that the aggregate function will summarize the column data and return the result.
Here as the table info is not provided.According to the options I understood that year is the numeric type column and vehicletype is the table name.
________________
Related Questions
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.