Skip to content
Related Articles
Get the best out of our app
GeeksforGeeks App
Open App
geeksforgeeks
Browser
Continue

Related Articles

UGC-NET | UGC-NET CS 2017 Dec 2 | Question 17

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

In SQL, __________ is an Aggregate function.
(A) SELECT
(B) CREATE
(C) AVG
(D) MODIFY


Answer: (C)

Explanation: An aggregate function allows you to perform a calculation on a set of values to return a single scalar value. AVG, COUNT, MIN, MAX, SUM are aggregate functions.

In SQL SELECT is used to choose a column from a database table.
CREATE is used to create a DB table.
AVG is a aggregate function.
MODIFY is used to modify DB table content.

So,option (C) is correct.

Quiz of this Question

My Personal Notes arrow_drop_up
Last Updated : 15 Mar, 2018
Like Article
Save Article
Similar Reads