Login using Social Account
     Continue with GoogleLogin using your credentials
An aggregate function is a function where the values of multiple rows are grouped together to form a single value of more significant meaning or measurements such as a set, a bag or a list.
select max(empsal) from emp;
select avg(empsal) from emp;
select sum(empsal) from emp;
select count(empsal) from emp;
Taking you to the next exercise in seconds...
Want to create exercises like this yourself? Click here.
No hints are availble for this assesment
Answer is not availble for this assesment
Loading comments...