Suppose I have three tables with index 1, 2, 3
tab[1] = Table[{i, 2*i, 3*i}, {i, 1, 5, 1}];
tab[2] = Table[{i, 4*i, 5*i}, {i, 1, 5, 1}];
tab[3] = Table[{i, 6*i, 7*i}, {i, 1, 5, 1}];
I can join one under the other with
Join[tab[1], tab[2], tab[3]];
To get desired result
Now suppose I have many, many tables with index up to large number N so that the above line of code is unsuitable.
How to join N tables one under the other in this case?

Apply:n = 3; Join @@ Table[tab[i], {i, n}]. $\endgroup$Catenate:Catenate[Table[tab[i], {i, 1, n}]]. $\endgroup$Array:Catenate[Array[tab, n]]$\endgroup$