Answers for "aggregate function in dbms"

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
0

what are the aggregate function in sql

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

how to use aggregate functions in sql

This is the example.Aggregate function is AVG.production.products is the table.

SELECT
    AVG(list_price) avg_product_price
FROM
    production.products;
Posted by: Guest on November-18-2020

Code answers related to "SQL"

Browse Popular Code Answers by Language