The EXISTS
operator is used to test for the existence of any record in a sub query.
The EXISTS
operator returns TRUE if the sub query returns one or more records.
Return all customers that is represented in the orders
table:
SELECT customers.customer_name
FROM customers
WHERE EXISTS (
SELECT order_id
FROM orders
WHERE customer_id = customers.customer_id
);
Run Example »
The result in example above showed that 89 customers had at least one order in the orders
table.
To check which customers that do not have any orders, we can use the NOT
operator together with the EXISTS
operator :
Return all customers that is NOT represented in the orders
table:
SELECT customers.customer_name
FROM customers
WHERE NOT EXISTS (
SELECT order_id
FROM orders
WHERE customer_id = customers.customer_id
);
Run Example »
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!