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:

0 comments:

Post a Comment

 
Top