Let's say I have two or more tables filled with users and I want to retrieve all users from those tables in the same query.
Tables share some columns and those columns that have the same name are the ones I'm trying to retrieve.
Something like:
SELECT name, age FROM users1;
SELECT name, age FROM users2;
etc.
Note: this is just an example and not the real problem. I cannot combine those tables into one.