multiple tables connection
|
Andrez Sudol |
|
2/12/2007 12:48:23 AM |
I don't believe that there is. Besides merging the data into one table and adding a field to di fferentiate which old table they came from, the solution could be rather cumbersome, if the dat a needs to be sorted together. To do that, you would load all the results into an array (or som ething similar) and sort it using the method of your choice.
Post Comments |
|
Re: multiple tables connection
|
Tom Garvey |
|
2/12/2007 12:51:25 AM |
Actually...
If your table structure is Identical and you're using a SQL table look into the UNION function.
http://www.w3schools.com/sql/sql_union.asp
Post Comments |
|
Re: multiple tables connection
|
Haseena Sabir Mohammed |
|
2/12/2007 12:53:39 AM |
Hehe After so much time I post here again on this topic.
Just wanted to let u know that the UNION function worked thx a bunch.
Post Comments |
|
Re: multiple tables connection
|
Tom Garvey |
|
2/12/2007 12:55:02 AM |
Happy to help
Post Comments |
|