SuperComputing
IS-IT--Management
I'm wondering if I can "filter" out what I need from a table before I join it to another table.
Table "Items" has 2,795 rows
Table "ItemsMonthly" has 39,352 rows
I need all rows returned from table ITEMS with the corresponding data from ITEMSMONTHLY that meet the following conditions: TYPE = 'IT' AND YEARID = '2008'
Here is my code:
Code:
SELECT Items.ItemNumber, Items.Description1, ItemsMonthly.QtySold_1
FROM Items
LEFT JOIN ItemsMonthly
ON Items.ItemNumber = ItemsMonthly.ItemNumber
AND (ItemsMonthly.Type='IT' AND ItemsMonthly.YearId='2008')
ORDER BY Items.ItemNumber
It takes FOREVER to return the data. If I could just
Code:
SELECT * FROM ItemsMonthly WHERE Type='IT' AND YearID='2008'
Wikipedia tells me that a join is "the outcome of first taking the Cartesian product (or cross-join) of all records in the tables...then return all records which satisfy the join predicate."
Is there any way to reverse this to optimize my query?