수색…
간단한 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