IN
Introduction to PostgreSQL IN operator
value IN (value1,value2,...)Using the PostgreSQL IN operator with a list of numbers
SELECT film_id, title
FROM film
WHERE film_id in (1, 2, 3);
Using the PostgreSQL IN operator with a list of strings

Using the PostgreSQL IN operator with a list of dates

PostgreSQL NOT IN operator
Last updated