Courses
Tutorials
Interview Prep
DSA
Practice Problems
C
C++
Java
Python
JavaScript
Data Science
Machine Learning
Courses
Linux
DevOps
Similar Topics
Web Technologies
32.1K+ articles
DSA
20.5K+ articles
Python
19.6K+ articles
Experiences
15.8K+ articles
Interview Experiences
14.5K+ articles
School Learning
11.1K+ articles
JavaScript
9.9K+ articles
Misc
7.7K+ articles
Databases
1.9K+ articles
PostgreSQL
386+ articles
postgreSQL-operators
19 posts
Recent Articles
PostgreSQL - CASE Statement
Last Updated: 15 July 2025
In PostgreSQL, CASE statements provide a way to implement conditional logic within SQL queries. Using these statements effectively can help streamline database functions, ...
read more
PostgreSQL
postgreSQL-operators
Databases
PostgreSQL - IF Statement
Last Updated: 28 July 2026
The PostgreSQL IF statement is a conditional statement used in PL/pgSQL blocks, functions, procedures and triggers to execute different statements based on specified condi...
read more
PostgreSQL
postgreSQL-operators
Databases
PostgreSQL COALESCE
Last Updated: 28 July 2026
The PostgreSQL COALESCE() function is used to handle NULL values by evaluating multiple expressions and returning the first available non-NULL value. It helps produce more...
read more
PostgreSQL
postgreSQL-operators
Databases
Create Database in PostgreSQL
Last Updated: 17 June 2026
Creating a database in PostgreSQL allows users to store, organize and manage related data in a separate database environment.Supports multiple databases on one server.Cont...
read more
PostgreSQL
postgreSQL-operators
PostgreSQL - EXISTS Operator
Last Updated: 28 July 2026
The EXISTS operator in PostgreSQL is used to check whether a subquery returns any rows. It returns TRUE if the subquery returns one or more rows; otherwise, it returns FAL...
read more
PostgreSQL
postgreSQL-operators
PostgreSQL - ALL Operator
Last Updated: 01 August 2026
The ALL operator in PostgreSQL is used to compare a value with a set of values returned by a subquery or an array. The condition evaluates to TRUE only if the comparison i...
read more
PostgreSQL
postgreSQL-operators
PostgreSQL - SOME Operator
Last Updated: 12 July 2025
The PostgreSQL SOME operator is used to compare a scalar value with a set of values returned by a subquery. This operator is useful for performing conditional checks again...
read more
PostgreSQL
postgreSQL-operators
PostgreSQL - ANY Operator
Last Updated: 28 July 2026
The ANY operator in PostgreSQL is used to compare a value with a set of values returned by a subquery or an array. The condition evaluates to TRUE if at least one value in...
read more
PostgreSQL
postgreSQL-operators
PostgreSQL - EXCEPT Operator
Last Updated: 01 August 2026
The EXCEPT operator in PostgreSQL returns the rows from the first query that do not appear in the second query. It is used to compare two result sets and identify records ...
read more
PostgreSQL
postgreSQL-operators
PostgreSQL - INTERSECT Operator
Last Updated: 24 July 2026
The INTERSECT operator in PostgreSQL is used to return the rows that are common to the results of two or more SELECT queries.Removes duplicate rows automatically.Requires ...
read more
PostgreSQL
postgreSQL-operators
PostgreSQL - UNION operator
Last Updated: 17 July 2026
The UNION operator in PostgreSQL is used to combine the results of two or more SELECT statements into a single result set. It automatically removes duplicate rows from the...
read more
PostgreSQL
postgreSQL-operators
PostgreSQL - BETWEEN Operator
Last Updated: 17 July 2026
The BETWEEN operator in PostgreSQL is used to filter rows where a column value falls within a specified range. The range is inclusive, meaning both the starting and ending...
read more
PostgreSQL
postgreSQL-operators
PostgreSQL - NOT BETWEEN operator
Last Updated: 12 July 2025
PostgreSQL NOT BETWEEN operator is used to match all values against a range of values excluding the values in the mentioned range itself.Syntax: value NOT BETWEEN low AND ...
read more
Misc
Python
postgreSQL-operators
PostgreSQL - LIKE operator
Last Updated: 28 July 2026
The PostgreSQL LIKE operator searches for a specified pattern in a text value. It is commonly used with wildcard characters to perform flexible string matching in SQL quer...
read more
PostgreSQL
postgreSQL-operators
PostgreSQL - IS NULL operator
Last Updated: 01 August 2026
The IS NULL operator in PostgreSQL is used to find rows where a column contains a NULL value. A NULL value represents missing, unknown, or undefined data. It is different ...
read more
PostgreSQL
postgreSQL-operators
1
2