The Append tools combines each row of your first dataset with each row of your second dataset. It is typically used when you want to “attach” a couple of columns of static data to a larger dataset.
Careful with the Append tool. The Append tool works by combining every row from each of the two input datasets. So if you have 10 rows in dataset one and 100 rows in dataset two, you will create an output of 1.000 (10 * 100) rows by appending them together. This is also known as a cross join or a cartesian product and will slow down performance.