Well, if you join the two tables (User_id + Region_id and Sub_User_id + Plan_id) you'll create a carthesian product, i.e. every combination of the two tables which seems to be what you're looking for in the resulting table. Be prepared for a lot of combinations if you have more data though when joining tables without any common fields. 1000 rows times 1000 rows quickly becomes one million combinations etc.