I have a large table A
, with around 5M observations and want to join it with 3 other tables with around 400k observations each.
The tables will be joined using different keys to A. All tables have just 1 occurrence of the joining keys only, so they will be one to one joins
Is it more efficient to use just 1 proc sql
block to make the 3 joins on A
or write 3 separate proc sql
blocks to make 1 join each?