Yogesh Chauhan's Blog

PostgreSQL BETWEEN

in Postgres on November 1, 2020

BETWEEN operator/construct = useful to match a value against a range of values.

The syntax is quite like this:


value_of_rows BETWEEN x AND y;

x and y are just end points and they are inclusive.

You can rewrite the same syntax from above without using BETWEEN as well:


value_of_rows >= x AND value_of_rows <= y;

Let’s take a look at the examples of both:

I am using the database available on my Github public repo

Example with BETWEEN:


SELECT product_name, unit_price 
FROM products 
WHERE unit_price 
BETWEEN 40 AND 50;

//Output
product_name.         unit_price 
"Northwoods Cranberry Sauce"	40
"Schoggi Schokolade"	43.9
"Rössle Sauerkraut"	45.6
...
...

Example without BETWEEN


SELECT product_name, unit_price 
FROM products 
WHERE unit_price >= 40 AND unit_price <= 50;

//Output
product_name.         unit_price 
"Northwoods Cranberry Sauce"    40
"Schoggi Schokolade"    43.9
"Rössle Sauerkraut"    45.6
...
...

To get the values out of that range, all we need to do is add NOT.

Example with NOT BETWEEN:


SELECT product_name, unit_price 
FROM products 
WHERE unit_price 
NOT BETWEEN 40 AND 50;

//Output
product_name.  unit_price 
"Chai"	18
"Chang"	19
"Aniseed Syrup"	10
...
...

You can achieve same results without using NOT BETWEEN as well:

Example without NOT BETWEEN:


SELECT product_name, unit_price 
FROM products 
WHERE unit_price < 40 OR unit_price > 50;

//Output
product_name.  unit_price 
"Chai"	18
"Chang"	19
"Aniseed Syrup"	10
...
...

Pay attention to the fact that, we needed to use OR to do so.


Most Read

#1 Solution to the error “Visual Studio Code can’t be opened because Apple cannot check it for malicious software” #2 How to add Read More Read Less Button using JavaScript? #3 How to check if radio button is checked or not using JavaScript? #4 Solution to “TypeError: ‘x’ is not iterable” in Angular 9 #5 PHP Login System using PDO Part 1: Create User Registration Page #6 How to uninstall Cocoapods from the Mac OS?

Recently Posted

#Apr 8 JSON.stringify() in JavaScript #Apr 7 Middleware in NextJS #Jan 17 4 advanced ways to search Colleague #Jan 16 Colleague UI Basics: The Search Area #Jan 16 Colleague UI Basics: The Context Area #Jan 16 Colleague UI Basics: Accessing the user interface
You might also like these
How to create a Star Ratings using CSS?CSSQuick Introduction to 11 Array Iteration Methods in JavaScriptJavaScriptHow to disable scrolling on html body on menu click using JavaScript?JavaScriptJavaScript String Properties and MethodsJavaScriptSELF JOIN in PostgresPostgresHow to pass arguments in SCSS function?SCSS