我希望这条语句返回有两个以上工作站的系统,我到目前为止已经完成了,但我不知道下一步该做什么。所有这些操作都会返回regionID小于1100001的所有系统。至少我的想法是对的吗?
SELECT DISTINCT mapSolarSystems.regionID,solarSystemID,solarSystemName,x,z,security
FROM mapSolarSystems
WHERE mapSolarSystems.regionID <11000001
AND
2 < (SELECT COUNT(*) FROM stations,mapSolarSystems
WHERE mapSolarSystems.solarSystemID=stations.systemid)https://stackoverflow.com/questions/47643137
复制相似问题