我有以下SQL代码:
SELECT EverythingCMDB.company
, COUNT(EverythingCMDB.company) AS People
FROM (
SELECT DISTINCT EverythingCMDB.MacAddress
, EverythingCMDB.company
, Monthly.street
, Monthly.MacVendor
FROM EverythingCMDB INNER JOIN Monthly ON EverythingCMDB.MacAddress = Monthly.MAC
WHERE Monthly.street ="222 Testing AVE" AND
EverythingCMDB.company <> NULL
)
GROUP BY EverythingCMDB.company;
我还有一个名为 AllAddresses 的查询。该查询有1列,其中包含 Monthly 表中的所有不同地址。
有什么方法可以创建一个VBA脚本来为上述查询中的所有地址创建一个查询?
从某种意义上说,Monthly.street ="222 Testing AVE"
将被更改,以便为每个位置创建唯一计数(“ 222测试AVE” 将更改为“ 123 Fake Street” ,因为它是 AllAddresses 查询中的地址)。
谢谢!