Difference between aggregate function and analytical function?

Answers were Sorted based on User's Feedback



Difference between aggregate function and analytical function?..

Answer / nb_mopidevi

Aggregate Function : Which returns one row for a group.

Analytical Function : which returns one result for each row in the group.


feedback accepted.

Is This Answer Correct ?    60 Yes 2 No

Difference between aggregate function and analytical function?..

Answer / yogish naik

we can observe that the aggregate functions return only one
row per group whereas analytic functions keeps all the rows
in the group. Using the aggregate functions, the select
clause contains only the columns specified in group by
clause and aggregate functions whereas in analytic functions
you can specify all the columns in the table.

The PARTITION BY clause is similar to GROUP By clause, it
specifies the window of rows that the analytic funciton
should operate on.

Is This Answer Correct ?    16 Yes 0 No

Difference between aggregate function and analytical function?..

Answer / pradeep

aggregate function - it returns only single value and (aggr Fun are Min,Max,Count,Sum,Avg)
analytical Function - it returns more than one value and (Analy fun are, string,date, numeric,conversions, and miscellaneous)

Is This Answer Correct ?    1 Yes 0 No

Post New Answer

More SQL PLSQL Interview Questions

What is delete command in sql?

0 Answers  


What are sql constraints?

0 Answers  


What is trigger in pl sql?

0 Answers  


What is sql mysql pl sql oracle?

0 Answers  


Which table is left in left join?

0 Answers  






what is the differnce between procedure and function? in both dml operations can work and in procedure through out parameter you can return value ,then what is the differce?

3 Answers   3i Infotech,


How does join work in sql?

0 Answers  


Define union, minus, union all, intersect ?

0 Answers  


package specification-3 procedures package body-2 procedures will is execute

2 Answers   PWC,


Can we update views in sql?

0 Answers  


What is a sql statement?

0 Answers  


What are stored procedures used for?

0 Answers  


Categories