how to link multiple tables into one search page |
11/30/2007 8:59:14 AM |
PHPRunner General questions | |
D
djdubuque author
I have three tables that I update once every month, these tables each have two fields that are consistent to them. But each has different data that needs to be searched against to display the final output. Can someone walk me through the steps needed to get my search page working? (yes, I'm a newbie). |
|
![]() |
Alexey admin 11/30/2007 |
Hi, select ... from table1 union all select ... from table2 union all select ... from table3
|