Site Owners Forums - Webmaster Forums

Site Owners Forums - Webmaster Forums (http://siteownersforums.com/index.php)
-   PHP / mySQL (http://siteownersforums.com/forumdisplay.php?f=10)
-   -   What is the difference between BETWEEN and IN condition operators? (http://siteownersforums.com/showthread.php?t=357563)

Pavan Techn 06-01-2018 10:14 AM

What is the difference between BETWEEN and IN condition operators?
 
The BETWEEN operator is used to display rows based on a range of values. The IN condition operator is used to check for values contained in a specific set of values.

henrybolt 09-03-2019 01:48 AM

Both of these operators are used to find out the multiple values from the table. Differences between these operators are that the BETWEEN operator is used to select a range of data between two values while The IN operator allows you to specify multiple values. Here we are finding the multiple values by using the SQL.

Kumkum 09-03-2020 09:25 AM

Hi,
BETWEEN operator: This operator is specially used to work with numeric data. BETWEEN operator select the values from particular range of values.
Ex. SELECT column_name(s)
FROM table_name
WHERE columnname BETWEEN value1 AND value2;

IN operator: In operator is a logical operator which uses to check that particular values exists or not in set of values.
Ex.
SELECT column_list FROM table
WHERE columnname IN (values1, values2, values3...);

The main difference between these two operators are In operator allows to check specific value from multiple data and BETWEEN operator used to select multiple (range) of data.


All times are GMT -7. The time now is 01:45 AM.


Powered by vBulletin Copyright © 2020 vBulletin Solutions, Inc.