Ben Erişim çevirdimBu SQL sorgusunu MS Access sorgusuna nasıl dönüştürebilirim?
SELECT COUNT(DISTINCT dbo.Polling_Stations.P_ID) AS [Male Stations]
FROM dbo.Agent INNER JOIN
dbo.Polling_Stations ON dbo.Agent.P_ID = dbo.Polling_Stations.P_ID
GROUP BY dbo.Polling_Stations.Gender
HAVING (dbo.Polling_Stations.Gender = N'Male')
SQL'de sorgusu vardır:
SELECT COUNT(DISTINCT Polling_Stations.P_ID) AS [Male Stations]
FROM Agent INNER JOIN
Polling_Stations ON Agent.P_ID = Polling_Stations.P_ID
GROUP BY Polling_Stations.Gender
HAVING (Polling_Stations.Gender = 'Male')
Ama bu bana bir hata veriyor: DISTINCT sözdizimi hatası Kont' sorgu ifadesinde (Operatör eksik) (Polling_Stations.P_ID)'.
senin söz dizimi hatası nedir yapmanız gerekir? – Kermit
'Count (DISTINCT Polling_Stations.P_ID)' deyimindeki sözdizimi hatası (işleç eksik). – sangeen
Köşeli parantezler erişimde geçerli mi? –