Collections:
Using IN Conditions in MySQL
How To Use IN Conditions in MySQL?
✍: FYIcenter.com
An IN condition is single value again a list of values. It returns TRUE, if the specified value is in the list. Otherwise, it returns FALSE. Some examples are given in the tutorial exercise below:
SELECT 3 IN (1,2,3,4,5) FROM DUAL; 1 SELECT 3 NOT IN (1,2,3,4,5) FROM DUAL; 0 SELECT 'Y' IN ('F','Y','I') FROM DUAL; 1
⇒ Using LIKE Conditions in MySQL
⇐ Converting Character Strings to Numeric Values in MySQL
2018-03-28, 1560🔥, 0💬
Popular Posts:
What Is a Dynamic Performance View in Oracle? Oracle contains a set of underlying views that are mai...
How To Query Tables and Loop through the Returning Rows in MySQL? The best way to query tables and l...
Where to find MySQL database server tutorials? Here is a collection of tutorials, tips and FAQs for ...
What Happens If the Imported Table Already Exists in Oracle? If the import process tries to import a...
What Is a Parameter File in Oracle? A parameter file is a file that contains a list of initializatio...