Hi Will, When you say you pull same exact fields there should be a relationship between them, for example if table_a has this fields title, ida, where id is the primary key of table_a, then table_b, for it to relate with table_a will have to have fields like title, idb, ida, where idb is the primary key of table_b, and ida is the foreign key since it's the one we will use to relate the two tables so in your select query you will have something like
Select * from table_a a, table_b b, where b.ida = a.id order by title;
I hope this will help
Cheers