透過使用IN關鍵字,我們可以使用子查詢來過濾資料。這是因為我們可以像使用值列表一樣使用查詢結果,使用IN運算子根據另一個查詢的結果來過濾查詢。子查詢出現在IN關鍵字後的括號中。
我們將使用以下表格中的資料來說明這個範例−
mysql> Select * from Customers; +-------------+----------+ | Customer_Id | Name | +-------------+----------+ | 1 | Rahul | | 2 | Yashpal | | 3 | Gaurav | | 4 | Virender | +-------------+----------+ 4 rows in set (0.00 sec) mysql> Select * from Reservations; +------+-------------+------------+ | ID | Customer_id | Day | +------+-------------+------------+ | 1 | 1 | 2017-12-30 | | 2 | 2 | 2017-12-28 | | 3 | 2 | 2017-12-29 | | 4 | 1 | 2017-12-25 | | 5 | 3 | 2017-12-26 | +------+-------------+------------+ 5 rows in set (0.00 sec)
下面的查詢使用了帶有子查詢的'IN'運算符,並在比較子查詢傳回的所有值後傳回結果。
mysql> SELECT * from customers WHERE customer_id IN (Select customer_id from reservations); +-------------+----------+ | Customer_Id | Name | +-------------+----------+ | 1 | Rahul | | 2 | Yashpal | | 3 | Gaurav | +-------------+----------+ 3 rows in set (0.00 sec)
以上是如何借助MySQL子查詢來過濾資料?的詳細內容。更多資訊請關注PHP中文網其他相關文章!