dm
2007-06-19 08:40:34 UTC
However I was neverly formerly trained on how to optimize my queries to execute as efficiently as possible, and can't really seem to find anything on the net in laymans terms. So I was hoping for any pointers on speeding up queries. At the very least, could you answer this question?
When querying against more than one table using joins does the order of tables matter at all? For example if I am joining results from table "A" which has 60 columns by 1 million rows to table "B" with 10 columns and 50 rows, does it matter if I write:
select * from a, b where a.index = b.index
compared to
select * from b, a where a.index = b.index? Does the large table placement impact anything on speed to execute?