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 list 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 list of PostgreSQL functions required to manipulate numbers in SQL.
-
− Complete list of PostgreSQL functions required to manipulate strings in PostgreSQL.