Difference between aggregate function and analytical function?
Answers were Sorted based on User's Feedback
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 |
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 |
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 |
In pl/sql, what is bulk binding, and when/how would it help performance?
How many scalar data types are supported in pl/sql?
Which is the best place to learn hadoop?
Difference between NVL, NVL2 and NULLIF
1> how are u debugging in plsql ? 2> how to connect oracle database from unix. is there ne way other than using sqlplus ?
What is an oracle stored procedure?
What are packages in pl sql and also explain its advantages?
When can we use the where clause and the having clause?
Why do we need databases?
List the various privileges that a user can grant to another user?
how to load data files into tables with 'mysqlimport'? : Sql dba
What are the different set operators available in sql?