jspash Posted April 8, 2003 Share Posted April 8, 2003 I have two tables that I would like to treat as one: table_one and table_one_archive Every month or so, I transfer a few thousand rows to the archive table so that the other table remains speedy. But on occasion I need to run a report that combines both tables as though they are one. If I do a \"select * from table_one, table_one_archive etc\" it smooshes everything together. Does this make sense? Any help please? Link to comment https://forums.phpfreaks.com/topic/322-multiple-table-query-as-a-single-table/ Share on other sites More sharing options...
shivabharat Posted April 8, 2003 Share Posted April 8, 2003 learn more about JOIN if u have MYSQL manual do have a look SELECT t1.name, t2.salary FROM employee AS t1, info AS t2 WHERE t1.name = t2.name; Link to comment https://forums.phpfreaks.com/topic/322-multiple-table-query-as-a-single-table/#findComment-1046 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.