10 Program to demonstrate Math Function in PostgreSQL

Program:

select avg(age) from students;



select count(name) from students;



select min(age) from students;



select max(age) from students;



select sum(age) from students;



Output:

 Math Function in PostgreSQL


Previous
Next Post »