Answers for "aggregate functions in sql example"

SQL
1

aggregate function in sql

-- Emp_Id is a Column Name
 -- employee_tble is Table Name;
 
select count(Emp_Id) from employee_tbl;

select min(Salary) from employee_tbl;

select max(Salary) from employee_tbl;

select sum(Salary) from employee_tbl;

select avg(Salary) from employee_tbl;
Posted by: Guest on September-16-2021
1

aggregate function in sql

--- GROUP FUNCTION | MULTI ROW FUNCTION | AGGREGATE FUNCTION 
--- COUNT , MAX , MIN , SUM , AVG
Posted by: Guest on January-07-2021

Code answers related to "aggregate functions in sql example"

Code answers related to "SQL"

Browse Popular Code Answers by Language