Drop Down MenusCSS Drop Down MenuPure CSS Dropdown Menu

PostgreSQL 9.4 FILTER CLAUSE

PostgreSQL 9.4 has introduced one of the very good FILTER CLAUSE which is used to apply filters in aggregate functions.
Using FILTER, You can use different types of aggregate functions without applying any GROUP BY CLAUSE.
Now Imagine, that I have one Student table and I want total number of Students based different grades.
What happened without FILTER CLAUSE, We have to perform this calculation in the individual SELECT query.
But with the use of FILTER CLAUSE we can perform aggregation based on different FILTER values in a single SQL Query.
Below is a small demonstration of this:
Create one Student table with sample data:
Apply FILTER clause to count number of Students based on Marks:

Comments

Popular posts from this blog

How to find the server is whether standby (slave) or primary(master) in Postgresql replication ?

7 Steps to configure BDR replication in postgresql

How to Get Table Size, Database Size, Indexes Size, schema Size, Tablespace Size, column Size in PostgreSQL Database

Ora2PG - Oracle/MySQL to Postgres DB migration Version 20.0

PostgreSQL Introduction