Re: [PHP] Join question [solved]

2007-12-01 Thread Daniel Brown
On Nov 30, 2007 10:00 PM, tedd <[EMAIL PROTECTED]> wrote: > At 2:00 PM +1100 11/30/07, Chris wrote: > >>Out of curiosity, what SQL server (and version) are you using? I > >>currently have MySQL 5.0.33 on my dev box and I had no problem with the > >>query I gave you. Perhaps it's a version issue. Th

Re: [PHP] Join question [solved]

2007-11-30 Thread tedd
At 9:52 AM -0500 11/30/07, Daniel Brown wrote: On Nov 29, 2007 11:17 PM, Robert Cummings <[EMAIL PROTECTED]> wrote: Rob, The version difference is probably right on the nose. If I remember correctly, you couldn't do that in the long-popular 3.23, which *gasp!* is still used by some web

Re: [PHP] Join question [solved]

2007-11-30 Thread tedd
At 2:00 PM +1100 11/30/07, Chris wrote: Out of curiosity, what SQL server (and version) are you using? I currently have MySQL 5.0.33 on my dev box and I had no problem with the query I gave you. Perhaps it's a version issue. There really shouldn't be a problem updating a table that also occurs in

Re: [PHP] Join question [solved]

2007-11-30 Thread Wolf
tedd <[EMAIL PROTECTED]> wrote: > Hi gang: > > I found why the JOIN didn't work for me in this instance, which was I > needed to create a third table and JOIN what I needed in that table > from the other two. > > My problem was that I was trying to alter one of the tables in the > JOIN.

Re: [PHP] Join question [solved]

2007-11-30 Thread Daniel Brown
On Nov 29, 2007 11:17 PM, Robert Cummings <[EMAIL PROTECTED]> wrote: > On Fri, 2007-11-30 at 14:00 +1100, Chris wrote: > > > Out of curiosity, what SQL server (and version) are you using? I > > > currently have MySQL 5.0.33 on my dev box and I had no problem with the > > > query I gave you. Perhaps

Re: [PHP] Join question [solved]

2007-11-29 Thread Robert Cummings
On Fri, 2007-11-30 at 14:00 +1100, Chris wrote: > > Out of curiosity, what SQL server (and version) are you using? I > > currently have MySQL 5.0.33 on my dev box and I had no problem with the > > query I gave you. Perhaps it's a version issue. There really shouldn't > > be a problem updating a tab

Re: [PHP] Join question [solved]

2007-11-29 Thread Chris
Out of curiosity, what SQL server (and version) are you using? I currently have MySQL 5.0.33 on my dev box and I had no problem with the query I gave you. Perhaps it's a version issue. There really shouldn't be a problem updating a table that also occurs in the select query since the select quer

Re: [PHP] Join question [solved]

2007-11-29 Thread Robert Cummings
On Thu, 2007-11-29 at 18:43 -0500, tedd wrote: > Hi gang: > > I found why the JOIN didn't work for me in this instance, which was I > needed to create a third table and JOIN what I needed in that table > from the other two. > > My problem was that I was trying to alter one of the tables in the

Re: [PHP] Join question [solved]

2007-11-29 Thread tedd
Hi gang: I found why the JOIN didn't work for me in this instance, which was I needed to create a third table and JOIN what I needed in that table from the other two. My problem was that I was trying to alter one of the tables in the JOIN. While that might be possible it didn't appear so in