K
Kay
HI
Im very stuck with a query. I am trying to count records from 3 tables
based on the DRIVER ID field. I want it displayed as
P01 6
P02 4
P03 7 Etc
I have got it working when trying it for one table, with following code
SELECT Count(*) AS Expr1, [table1].[Driver ID]
FROM [Current Jobs]
GROUP BY [table1].[Driver ID]
ORDER BY [table1].[Driver ID];
How do I get it working by searching through 3 tables
Your help is much appreciated
Im very stuck with a query. I am trying to count records from 3 tables
based on the DRIVER ID field. I want it displayed as
P01 6
P02 4
P03 7 Etc
I have got it working when trying it for one table, with following code
SELECT Count(*) AS Expr1, [table1].[Driver ID]
FROM [Current Jobs]
GROUP BY [table1].[Driver ID]
ORDER BY [table1].[Driver ID];
How do I get it working by searching through 3 tables
Your help is much appreciated