SQL Query Theory Question...
Posted
by Keng
on Stack Overflow
See other posts from Stack Overflow
or by Keng
Published on 2010-05-21T14:21:01Z
Indexed on
2010/05/21
14:30 UTC
Read the original article
Hit count: 194
I have a large historical transaction table (15-20 million rows MANY columns) and a table with one row one column. The table with one row contains a date (last processing date) which will be used to pull the data in the trasaction table ('process_date').
Question: Should I inner join the 'process_date' table to the transaction table or the transaction table to the 'process_date' table?
© Stack Overflow or respective owner