Re: [PHP] Left Join Across Two Databases

2001-04-05 Thread Steve Werby
"Jonathan Chum" <[EMAIL PROTECTED]> wrote: > I have one table on one database and another table on another > database. I want to perform a left join these two tables in MySQL. I > don't think it's possible, but cuious if there is a "method" that can > be coded in PHP to do this? Just prepend the

Re: [PHP] Left Join Across Two Databases

2001-04-05 Thread Christian Reiniger
On Thursday 05 April 2001 07:23, you wrote: > I have one table on one database and another table on another > database. I want to perform a left join these two tables in MySQL. I > don't think it's possible, but cuious if there is a "method" that can > be coded in PHP to do this? > > If you think

Re: [PHP] Left Join Across Two Databases

2001-04-04 Thread Plutarck
Quit? LOL Seriously, you may be forced to do 2 querries to mysql. Use mysql_db_query twice, and it should, in an ideal world, work. Of course it's a pain in the royal ass to combine the two querry results into something useful, but at least you can "do it". It won't be pretty, but it can be don