Aggregate Function
Data base functions are called Aggregate Functions.
These are also called Scalar functions.
1. sum()
2. min()
3. max()
4. avg()
All aggregate functions use select query.
In scalar program we don't use Non-Query.
Ex-
select sum(Column_name) from Table_name;
Note:- column should not be empty.
Comments
Post a Comment