サーチ…
単純なIN句
与えられたid
のどれかを持つレコードを取得するには
select *
from products
where id in (1,8,3)
上記のクエリは
select *
from products
where id = 1
or id = 8
or id = 3
サブクエリでIN句を使用する
SELECT *
FROM customers
WHERE id IN (
SELECT DISTINCT customer_id
FROM orders
);
上記は、システムで注文したすべての顧客を提供します。
Modified text is an extract of the original Stack Overflow Documentation
ライセンスを受けた CC BY-SA 3.0
所属していない Stack Overflow