PostgreSQL Tutorial
Advanced PostgreSQL
PostgreSQL Interfaces
PostgreSQL Useful Resources
Selected Reading
- PostgreSQL - Distinct Keyword
- PostgreSQL - Having Clause
- PostgreSQL - With Clause
- PostgreSQL - Group By
- PostgreSQL - Order By Clause
- PostgreSQL - Limit Clause
- PostgreSQL - Like Clause
- PostgreSQL - Delete Query
- PostgreSQL - Update Query
- PostgreSQL - AND & OR Clauses
- PostgreSQL - Where Clause
- PostgreSQL - Expressions
- PostgreSQL - Operators
- PostgreSQL - Select Query
- PostgreSQL - Insert Query
- PostgreSQL - Schema
- PostgreSQL - Drop Table
- PostgreSQL - Create Table
- PostgreSQL - Drop Database
- PostgreSQL - Select Database
- PostgreSQL - Create Database
- PostgreSQL - Data Types
- PostgreSQL - Syntax
- PostgreSQL - Environment Setup
- PostgreSQL - Overview
- PostgreSQL - Home
Advanced PostgreSQL
- PostgreSQL - Useful Functions
- PostgreSQL - Functions
- Date/Time Functions & Operators
- PostgreSQL - Privileges
- PostgreSQL - Auto Increment
- PostgreSQL - Sub Queries
- PostgreSQL - Locks
- PostgreSQL - Transactions
- PostgreSQL - Views
- Truncate Table Command
- PostgreSQL - Alter Table Command
- PostgreSQL - Indexes
- PostgreSQL - Triggers
- PostgreSQL - Alias Syntax
- PostgreSQL - NULL Values
- PostgreSQL - Unions Clause
- PostgreSQL - Joins
- PostgreSQL - Constraints
PostgreSQL Interfaces
PostgreSQL Useful Resources
Selected Reading
- Who is Who
- Computer Glossary
- HR Interview Questions
- Effective Resume Writing
- Questions and Answers
- UPSC IAS Exams Notes
PostgreSQL - Useful Functions
PostgreSQL - Useful Functions
PostgreSQL built-in functions, also called as Aggregate functions, are used for performing processing on string or numeric data.
The following is the pst of all general-purpose PostgreSQL built-in functions −
− The PostgreSQL COUNT aggregate function is used to count the number of rows in a database table.
− The PostgreSQL MAX aggregate function allows us to select the highest (maximum) value for a certain column.
− The PostgreSQL MIN aggregate function allows us to select the lowest (minimum) value for a certain column.
− The PostgreSQL AVG aggregate function selects the average value for certain table column.
− The PostgreSQL SUM aggregate function allows selecting the total for a numeric column.
− The PostgreSQL ARRAY aggregate function puts input values, including nulls, concatenated into an array.
− Complete pst of PostgreSQL functions required to manipulate numbers in SQL.
− Complete pst of PostgreSQL functions required to manipulate strings in PostgreSQL.