Using the IN keyword in SQL | SQL Bits | Kovolff

Опубликовано: 22 Апрель 2026
на канале: kovolff
721
9

IN (in_content)
in_content is list of elements the query has to take into account when filtering

in_inhalt examples:
SELECT * FROM drivers WHERE nationality IN ('German', 'Swiss')
or:
SELECT * FROM drivers WHERE nationality IN (SELECT DISTINCT nationality FROM Constructors)

Formel 1 Data: https://ergast.com/mrd/db/#csv

#sql #in #queries #databases #filter