Movatterモバイル変換


[0]ホーム

URL:


Menu
×
See More 
Sign In
+1 Get Certified Upgrade Teachers Spaces Get Certified Upgrade Teachers Spaces
   ❮   
     ❯   

PostgreSQL IN Operator


IN

TheINoperator allows you to specify a list of possible values in the WHERE clause.

TheINoperator is a shorthand for multipleOR conditions.

Example

Return all customers from 'Germany', France' or 'UK':

SELECT * FROM customers
WHERE country IN ('Germany', 'France', 'UK');
Run Example »

NOT IN

By using theNOT keyword in front of theINoperator, you return all records that are NOT any of the values in the list.

Example

Return all customers that are NOT from 'Germany', France' or 'UK':

SELECT * FROM customers
WHERE country NOT IN ('Germany', 'France', 'UK');
Run Example »

IN (SELECT)

You can also use aSELECT statement inside the parenthesis to return all recordsthat are in the result of theSELECT statement.

Example

Return all customers that have an order in theorders table:

SELECT * FROM customers
WHERE customer_id IN (SELECT customer_id FROM orders);
Run Example »

NOT IN (SELECT)

The result in the example above returned 89 records, that means that there are 2 customers that haven't placed any orders.

Let us check if that is correct, by using theNOT IN operator.

Example

Return all customers that have NOT placed any orders in theorders table:

SELECT * FROM customers
WHERE customer_id NOT IN (SELECT customer_id FROM orders);
Run Example »



×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
sales@w3schools.com

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
help@w3schools.com

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning.
Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness
of all content. While using W3Schools, you agree to have read and accepted ourterms of use,cookies andprivacy policy.

Copyright 1999-2025 by Refsnes Data. All Rights Reserved.W3Schools is Powered by W3.CSS.


[8]ページ先頭

©2009-2025 Movatter.jp