I have the follwoing quere
SELECT COUNT(*) AS Workstation_Count
FROM [SELECT DISTINCT Workstation_ID FROM Machine_Connect]. AS [%$##@_Alias];
I want to count the number of unique items in the DB between two dates. There is also a date field in the db.
I'm using SQL - MS Access.
Thank you in advance
SELECT COUNT(*) AS Workstation_Count
FROM [SELECT DISTINCT Workstation_ID FROM Machine_Connect]. AS [%$##@_Alias];
I want to count the number of unique items in the DB between two dates. There is also a date field in the db.
I'm using SQL - MS Access.
Thank you in advance