使用 Ms Access 简单加入给我重复的数据
Posted
技术标签:
【中文标题】使用 Ms Access 简单加入给我重复的数据【英文标题】:Using Ms Access simple joining giving me repeated data 【发布时间】:2014-10-14 05:39:58 【问题描述】:(我希望在 msaccess 查询中与众不同) 我有两个表,我的数据在 datagridview 中匹配和重复我正在处理报告请帮助我
这是我的简单连接查询
select Labortary.Test_Name,Labortary.Test_Charges,LabortaryTestRecord.[Total Amount]
from LabortaryTestRecord,Labortary
where LabortaryTestRecord.[PatientID]=Labortary.Patient_id
and LabortaryTestRecord.[PatientID]=34
【问题讨论】:
您是否尝试将DISTINCT
关键字添加到您的查询中? ***.com/questions/5788586/…
是的,现在对了,谢谢 HHH
【参考方案1】:
您必须添加 DISTINCT 关键字:
SELECT DISTINCT Labortary.Test_Name,Labortary.Test_Charges,
LabortaryTestRecord.[Total Amount]
FROM LabortaryTestRecord,Labortary
WHERE LabortaryTestRecord.[PatientID]=Labortary.Patient_id
and LabortaryTestRecord.[PatientID]=34
【讨论】:
是的,谢谢我解决了我写不同关键词的问题以上是关于使用 Ms Access 简单加入给我重复的数据的主要内容,如果未能解决你的问题,请参考以下文章