在这里,我使用内部连接来返回每个区域中的站数。
我得到结果
Zone (No column name)
MIDDLESEX 4
如何标记上面的列?
我试图在内部连接中做为“No_of_Stations”
这是我的代码。
select
dbo.FindIntersectingZone(location) as 'Zone',
count(*)
from
londonStations
inner join [planning_districts_2008_updated] on [planning_districts_2008_updated] .geom.STIntersects(stations.location) = 1
group by
dbo.FindIntersectingZone(location)