NXMold
Technical User
- Jul 22, 2008
- 104
The main screen of my database is bound to this query, it's always open and is the primary interaction with data.
I am trying to optimize the speed of things (I have been through all the standard FAQ's) and want to scrutinize this particular query.
There are about 4,000 job #'s, but less than 100 are active at any time. Since this query joins three tables but only shows active jobs, I think there might be a better way.
SELECT CMEJobList.*, Shop.*, Engineering.*
FROM (CMEJobList LEFT JOIN Engineering ON CMEJobList.CMEJobNumber = Engineering.CMEJobNumber) LEFT JOIN Shop ON CMEJobList.CMEJobNumber = Shop.CMEJobNumber
WHERE (((CMEJobList.Active)=True))
ORDER BY CMEJobList.CMEJobNumber;
I tried making a sub query Query_Active_JobList and using that instead of the table CMEJobList, BUT I reference the field "CMEJobList.CMEJobNumber" in dozens of places and cannot create that field name with an alias. I now know that it should have been an alias from the beginning.
I have read about placing the 'sub-query' in the WHERE clause, but don't understand exactly.
I am trying to optimize the speed of things (I have been through all the standard FAQ's) and want to scrutinize this particular query.
There are about 4,000 job #'s, but less than 100 are active at any time. Since this query joins three tables but only shows active jobs, I think there might be a better way.
SELECT CMEJobList.*, Shop.*, Engineering.*
FROM (CMEJobList LEFT JOIN Engineering ON CMEJobList.CMEJobNumber = Engineering.CMEJobNumber) LEFT JOIN Shop ON CMEJobList.CMEJobNumber = Shop.CMEJobNumber
WHERE (((CMEJobList.Active)=True))
ORDER BY CMEJobList.CMEJobNumber;
I tried making a sub query Query_Active_JobList and using that instead of the table CMEJobList, BUT I reference the field "CMEJobList.CMEJobNumber" in dozens of places and cannot create that field name with an alias. I now know that it should have been an alias from the beginning.
I have read about placing the 'sub-query' in the WHERE clause, but don't understand exactly.