hi,
i m trying to run a query on an MSAccess table, but it does not give me any count but only 0.
There are 3 null values which i should be getting but it does not give me the result. This query works perfectly in MSSql Server 2008.
the query is :
I need a workaround for this but am unable to find one. Any help would be most appreciated.
i m trying to run a query on an MSAccess table, but it does not give me any count but only 0.
There are 3 null values which i should be getting but it does not give me the result. This query works perfectly in MSSql Server 2008.
the query is :
VB.NET:
SELECT COUNT(*) AS Cntr
FROM (Modul m LEFT OUTER JOIN
Relation r ON m.Mod_Name = r.von)
WHERE (m.[group] = '')
I need a workaround for this but am unable to find one. Any help would be most appreciated.
Last edited: