mysql minus 语句用法_我们如何模拟MySQL MINUS查询?

本文介绍了如何在MySQL中使用JOIN操作来模拟MINUS查询。通过示例展示了如何找出只存在于一个表中的记录,包括从'Student_info'中找出在'Student_detail'中不存在的记录,以及从'Student_detail'中找出在'Student_info'中不存在的记录。
摘要由CSDN通过智能技术生成

由于我们无法在MySQL中使用MINUS查询,因此我们将使用JOIN模拟MINUS查询。通过以下示例可以理解-

示例

在此示例中,我们有两个表,即Student_detail和Student_info,具有以下数据-mysql> Select * from Student_detail;

+-----------+---------+------------+------------+

| studentid | Name    | Address    | Subject    |

+-----------+---------+------------+------------+

|       101 | YashPal | Amritsar   | History    |

|       105 | Gaurav  | Chandigarh | Literature |

|       130 | Ram     | Jhansi     | Computers  |

|       132 | Shyam   | Chandigarh | Economics  |

|       133 | Mohan   | Delhi      | Computers  |

|       150 | Rajesh  | Jaipur     | Yoga       |

|       160 | Pradeep | Kochi      | Hindi      |

+-----------+---------+------------+------------+

7 rows in set (0.00 sec)

mysql> Select * from Student_info;

+-----------+-----------+------------+-------------+

| studentid | Name      | Address    | Subject     |

+-----------+-----------+------------+-------------+

|       101 | YashPal   | Amritsar   | History     |

|       105 | Gaurav    | Chandigarh | Literature  |

|       130 | Ram       | Jhansi     | Computers   |

|       132 | Shyam     | Chandigarh | Economics   |

|       133 | Mohan     | Delhi      | Computers   |

|       165 | Abhimanyu | Calcutta   | Electronics |

+-----------+-----------+------------+-------------+

6 rows in set (0.00 sec)

现在,以下使用JOINS的查询将模拟MINUS以在student_info中返回'studentid'值,但在Student_detail表中则不返回。mysql> SELECT studentid from student_info LEFT JOIN Student_detail USING(studentid) WHERE student_detail.studentid IS NULL;

+-----------+

| studentid |

+-----------+

|       165 |

+-----------+

1 row in set (0.07 sec)

现在,以下查询将为我们提供与上述查询相反的结果,即它将在student_detail中返回“ studentid”值,但不在Student_info表中返回。mysql> SELECT studentid from student_detail LEFT JOIN Student_info USING(studentid) WHERE student_info.studentid IS NULL;

+-----------+

| studentid |

+-----------+

|       150 |

|       160 |

+-----------+

2 rows in set (0.00 sec)

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值