在MSACCESS中按类别和子类别按前N名创建列表

时间:2019-06-06 18:24:03

标签: sql ms-access-2010

我有一个def queue_is_identical(source1,source2): result = 0 while result == 0: src_1 = src_1.dequeue() src_2 = src_2.dequeue() if src_1 != src_2: result == False if self.source1.isempty()==True: return result return result 个办公室列表和一个大县列表,我正试图确定哪些县是最接近那些县的50办公室。我已使用拉特朗(Lat Long)作为县中心和办公室来计算两者之间的距离。

我的数据现在分为3列:

top 3

我对所有50个办公室都有里程,但是如何减少对最近3个办公室的输出呢?

我尝试了以下解决方案:Access 2002 - how to Group By and Top N records in same query

Zip, OfficeName, and Miles (the distance between the two)

Zip     OfficeName   Miles
20601   Park Potomac    32.1344
20601   Clarksville 39.6714
20601   Cambridge   43.1868
20601   Ellicott City   44.4464
20601   Lutherville 55.8513
20601   Perry Hall  56.0435
20602   Park Potomac    33.3036
20602   Clarksville 41.9749
20602   Cambridge   45.3606
20602   Ellicott City   47.0838
20602   Lutherville 58.8546
20602   Perry Hall  59.2286
20603   Park Potomac    30.0754
20603   Clarksville 39.6311
20603   Ellicott City   45.1373
20603   Cambridge   48.3889

基于SELECT TopDistance.Zip, TopDistance.OfficeName, TopDistance.Miles FROM TopDistance WHERE TopDistance.Miles In (SELECT TOP 3 TopDistance.Miles FROM TopDistance as Dupe WHERE Dupe.Zip = TopDistance.Zip and Dupe.OfficeName=TopDistance.OfficeName ORDER BY TopDistance.Miles ASC) 语句的使用,我应该每个Zip仅获得3行数据,显示关闭的三个办公室以及这些办公室有多远。

但是,结果仍显示所有50个办公室的距离。

为什么不能使用“选择前3名”?

1 个答案:

答案 0 :(得分:1)

我相信您应该在子查询中将选择输出从TopDistance.Miles更改为Dupe.Miles。其次,您在子查询中的条件要详细。此条件Dupe.Zip = TopDistance.Zip and Dupe.OfficeName=TopDistance.OfficeName仅可满足一行,这就是为什么要获得所有行的原因。

SELECT TopDistance.Zip, TopDistance.OfficeName, TopDistance.Miles
FROM TopDistance as TopDistance
WHERE TopDistance.Miles In 
      (SELECT TOP 3 Dupe.Miles
      FROM TopDistance as Dupe
      WHERE Dupe.Zip = TopDistance.Zip
      ORDER BY Dupe.Miles ASC)