博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
两个表中多个字段相同,查询一个中有在另一个表中没有的数据
阅读量:5061 次
发布时间:2019-06-12

本文共 390 字,大约阅读时间需要 1 分钟。

SQL可以使用In, Not In来查询一个表中的另外一个表里没有的数据,但只能是单一的字段。当字段多个的时候怎么办呢?

举例:mz_detail_charge和 mz_receipt表中

select distinct a.patient_id,a.ledger_sn,b.patient_id,b.ledger_sn  from mz_detail_charge a left outer join  mz_receipt b

on a.patient_id=b.patient_id and a.ledger_sn=b.ledger_sn where (b.patient_id is null or b.ledger_sn is null)

转载于:https://www.cnblogs.com/cnajian/archive/2011/04/12/2013499.html

你可能感兴趣的文章
黑莓游戏引擎
查看>>
Dijkstra算法和其邻接矩阵实现
查看>>
IE6 中 window.location.href 不能跳转
查看>>
v形 加强版
查看>>
EMVTag系列12《卡片内部风险管理数据》
查看>>
Recommendation system
查看>>
linux批量删除进程
查看>>
第二次代码作业
查看>>
[转载] 自定义标签,jsp调用java类
查看>>
2017-12 CDQZ集训(已完结)
查看>>
10.0.4_CentOS_120g_for_Qt5.3.2
查看>>
题画【沙枣树】
查看>>
2017暑假 第三周 学习总结(复习)
查看>>
Oracle --- 也来谈谈分页
查看>>
在mac中导入hadoop2.6.0源代码至eclipse 分类: A1_H...
查看>>
[UIImageView]Frame Rectangles
查看>>
Codeforces 787D. Legacy 线段树优化建图+最短路
查看>>
大杂烩 -- Iterator 并发修改异常ConcurrentModificationException
查看>>
c++实现双链表
查看>>
python web开发-flask中sqlalchemy的使用
查看>>