this:

select tbl1.field1, tbl2.field2 from tbl1, tbl2 where tbl1.id = tbl2.id

is the same thing as:

select tbl1.field1, tbl2.field2 from tbl1 left join tbl2 on tbl1.id = tbl2.id


- TIM


> Hi,
>
> unfortunately my provider still runs My SQL version 3.22.32 on his server.
> Apparently the LEFT JOIN statement does not work on this version.
>
> Anybody knows a workaround?
>
> Holger
>
>
> ---------------------------------------------------------------------
> Before posting, please check:
>    http://www.mysql.com/manual.php   (the manual)
>    http://lists.mysql.com/           (the list archive)
>
> To request this thread, e-mail <[EMAIL PROTECTED]>
> To unsubscribe, e-mail <[EMAIL PROTECTED]>
> Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php
>

-- 
-TIM


---------------------------------------------------------------------
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/           (the list archive)

To request this thread, e-mail <[EMAIL PROTECTED]>
To unsubscribe, e-mail <[EMAIL PROTECTED]>
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php

Reply via email to