Computer Science, asked by ganjulashriraj9899, 3 months ago

The
aggregation operation adds up all the values of the attribute


avg
add
max​

Answers

Answered by allysia
2

Answer:

avg()

Explanation:

avg() operator return the average of tuples within the attribute.

It is used as in the following command:

select avg(marks) from table_name;

where table_name is the name of the table and marks is an attribute.

Similar questions